Fixed ifdefs

This commit is contained in:
gabime
2023-09-28 22:58:50 +03:00
parent 0773e11883
commit 976d3d20b6
5 changed files with 34 additions and 32 deletions

View File

@@ -6,7 +6,7 @@
// base sink templated over a mutex (either dummy or real)
// concrete implementation should override the sink_it_() and flush_() methods.
// locking is taken care of in this class - no locking needed by the
// implementers..
// implementers
//
#include "../common.h"

View File

@@ -32,7 +32,6 @@ Windows Registry Editor Version 5.00
-----------------------------------------------------------------------------------------*/
#pragma once
#ifdef _WIN32
#include "../details/null_mutex.h"
#include "base_sink.h"
@@ -250,5 +249,3 @@ using win_eventlog_sink_st = win_eventlog::win_eventlog_sink<details::null_mutex
} // namespace sinks
} // namespace spdlog
#endif