Compare commits

..

3 Commits

Author SHA1 Message Date
gabime
14ab43ec0b Updated fmt bundled files 2025-05-08 18:06:13 +03:00
gabime
ebf72d7d3e update comments 2025-05-08 15:56:58 +03:00
gabime
829deec2ee Bump fmt to 11.2.0 2025-05-08 15:52:38 +03:00
2 changed files with 2 additions and 2 deletions

View File

@@ -95,7 +95,7 @@ SPDLOG_API void set_error_handler(void (*handler)(const std::string &msg));
SPDLOG_API void register_logger(std::shared_ptr<logger> logger);
// Register the given logger with the given name
// Will replace any existing logger with the same name.
// Will replace any the existing logger with the same name if exists.
SPDLOG_API void register_or_replace(std::shared_ptr<logger> logger);
// Apply a user-defined function on all registered loggers

View File

@@ -5,7 +5,7 @@
#define SPDLOG_VER_MAJOR 1
#define SPDLOG_VER_MINOR 15
#define SPDLOG_VER_PATCH 3
#define SPDLOG_VER_PATCH 2
#define SPDLOG_TO_VERSION(major, minor, patch) (major * 10000 + minor * 100 + patch)
#define SPDLOG_VERSION SPDLOG_TO_VERSION(SPDLOG_VER_MAJOR, SPDLOG_VER_MINOR, SPDLOG_VER_PATCH)