1
0
mirror of https://github.com/gabime/spdlog.git synced 2025-04-29 03:53:54 +00:00

Compare commits

..

No commits in common. "8e3b1338a5842e2598e183230f33db3ab1c86ee9" and "7d07e0312a9185789977b9b0d1b18bae52db6b72" have entirely different histories.

5 changed files with 5 additions and 9 deletions

View File

@ -42,5 +42,4 @@ public:
#ifdef SPDLOG_HEADER_ONLY
#include "backtracer-inl.h"
#endif
#endif

View File

@ -21,5 +21,4 @@ struct synchronous_factory
return new_logger;
}
};
} // namespace spdlog
} // namespace spdlog

View File

@ -24,5 +24,4 @@
#else // SPDLOG_FMT_EXTERNAL is defined - use external fmtlib
#include <fmt/core.h>
#include <fmt/format.h>
#endif
#endif

View File

@ -37,7 +37,7 @@ public:
protected:
// sink formatter
std::unique_ptr<spdlog::formatter> formatter_;
mutable Mutex mutex_;
Mutex mutex_;
virtual void sink_it_(const details::log_msg &msg) = 0;
virtual void flush_() = 0;

View File

@ -55,5 +55,4 @@ inline std::shared_ptr<logger> basic_logger_st(const std::string &logger_name, c
#ifdef SPDLOG_HEADER_ONLY
#include "basic_file_sink-inl.h"
#endif
#endif