Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gabime/spdlog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-11-06"#include" <spdlog/.*> instead of "spdlog/.*"Cristian Morales Vega
The meaning of using quotes to #include is implementation defined, so it may or not may be what we want. At least POSIX (https://pubs.opengroup.org/onlinepubs/9699919799/utilities/c99.html) says: "headers whose names are enclosed in double-quotes ( "" ) shall be searched for first in the directory of the file with the #include line", so not what we want since "spdlog" ends up twice in the path.
2019-08-28Unified usage of fmt::memory_buffer across the codebasegabime
2019-06-04Updated copyright headersgabime
2019-05-11Normalized copyright messagegabime
2018-07-23code formattinggabime
2018-07-22support set_formatter in spdlog.hgabime
2018-07-07Fixed bugs in stdout_sinks and in msvcgabime
2018-07-04pre allocate async q memorygabime
2018-06-26remove unneeded includes from filegabime
2018-06-26Pattern formatter optimizationsgabime
2018-06-24pattern per sink and pattern cachinggabime
2018-06-10formatgabime
2018-06-10move underscores to the end of private membersgabime
2018-04-29Normalized spdlog include pathsgabime
2018-03-09clang-formatgabime
2018-02-25modernize-pass-by-valueDaniel Chabrowski
2018-02-25modernize-use-overrideDaniel Chabrowski
2018-02-23small fix to pattern_formatter ctorgabime
2018-02-06Support for custom EOL per formatterEmad William Farag
2017-11-11modified path on quoted #includesdaylanKifky
Paths pointing to the root of the library where replaced for ones relatives to each file. For example, inside /include/spdlog/details/file_helper.h: This will look for os.h in /include/spdlog/details/spdlog/details/ which doesn't exists. replaced with:
2017-05-31use if statement instead of switch (changes of adding new time ↵ThePhD
specifications outside of standard are probably unlikely anyhow) pattern_time -> pattern_time_type ptime variable name -> pattern_time variable name make sure four spaces used, not tabs
2017-05-31implement a flag (in this case, an enumeration) that allows control over the ↵ThePhD
type; we make it an enum for possible expansions of time abstractions that might make it into the C++ standard in the future (see Howard Hinnant's date/timezone library) or might be usefully-available from the OS at some point in time
2017-05-21Fixed issues 449Tennn
Please check it
2017-04-28Add an optional final qualifier to typesJean-Michaël Celerier
When building with GCC's -Wfinal-types, a lot of types of spdlog are marked as being more optimizable if they were marked final. This patch adds a possibility for the user of the library to `#define SPDLOG_FINAL final` and enjoy potentially better performance : GCC is then able to replace virtual calls by true function calls if it can ensure that there are no derived types). By default SPDLOG_FINAL is defined to nothing to not break existing code that may be inheriting of some of these types for some reason.
2016-04-20astylegabime
2016-04-03astylegabime
2016-02-25Added missing standard header includes.Kevin M. Godby
2016-02-25Fixed header include problems.Kevin M. Godby
2015-11-28MIT licensegabime
2014-12-21astylegabime
2014-12-21astylegabime
2014-11-05Fix level 4 warnings under VSgabi
2014-11-01readmegabime
2014-11-01astylegabime
2014-10-31spdloggabi