Merge pull request #1918 from matt77hias/v1.x

Made mutex member variable mutable
pull/1924/head
Gabi Melman 4 years ago committed by GitHub
commit 8e3b1338a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

Loading…
Cancel
Save