Commit 0300c72b authored by Your Full Name's avatar Your Full Name Committed by gabime

Removed unneeded includes to pattern_foramtter.h

parent 83ac0792
...@@ -9,7 +9,6 @@ ...@@ -9,7 +9,6 @@
#include <spdlog/sinks/sink.h> #include <spdlog/sinks/sink.h>
#include <spdlog/details/backtracer.h> #include <spdlog/details/backtracer.h>
#include <spdlog/pattern_formatter.h>
#include <cstdio> #include <cstdio>
......
...@@ -6,7 +6,6 @@ ...@@ -6,7 +6,6 @@
#include "base_sink.h" #include "base_sink.h"
#include <spdlog/details/log_msg.h> #include <spdlog/details/log_msg.h>
#include <spdlog/details/null_mutex.h> #include <spdlog/details/null_mutex.h>
#include <spdlog/pattern_formatter.h>
#include <algorithm> #include <algorithm>
#include <memory> #include <memory>
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
#include <wincon.h> #include <wincon.h>
#include <spdlog/common.h> #include <spdlog/common.h>
#include <spdlog/pattern_formatter.h> #include <spdlog/default_formatter.h>
namespace spdlog { namespace spdlog {
namespace sinks { namespace sinks {
...@@ -19,7 +19,7 @@ template<typename ConsoleMutex> ...@@ -19,7 +19,7 @@ template<typename ConsoleMutex>
SPDLOG_INLINE wincolor_sink<ConsoleMutex>::wincolor_sink(void *out_handle, color_mode mode) SPDLOG_INLINE wincolor_sink<ConsoleMutex>::wincolor_sink(void *out_handle, color_mode mode)
: out_handle_(out_handle) : out_handle_(out_handle)
, mutex_(ConsoleMutex::mutex()) , mutex_(ConsoleMutex::mutex())
, formatter_(details::make_unique<spdlog::pattern_formatter>()) , formatter_(details::make_unique<spdlog::default_formatter>())
{ {
set_color_mode_impl(mode); set_color_mode_impl(mode);
......
...@@ -8,7 +8,6 @@ ...@@ -8,7 +8,6 @@
#endif #endif
#include <spdlog/common.h> #include <spdlog/common.h>
#include <spdlog/pattern_formatter.h>
namespace spdlog { namespace spdlog {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment