Removed SPDLOG_WCHAR_SUPPORT macro

This commit is contained in:
gabime
2023-07-28 19:07:32 +03:00
parent 7c054b6dba
commit 5993e78aac
3 changed files with 3 additions and 10 deletions

View File

@@ -19,6 +19,7 @@
#include <spdlog/sinks/sink.h>
#include <vector>
#include <cassert>
#ifndef SPDLOG_NO_EXCEPTIONS
# define SPDLOG_LOGGER_CATCH(location) \
@@ -266,6 +267,7 @@ protected:
// log the given message (if the given log level is high enough)
virtual void sink_it_(const details::log_msg &msg)
{
assert (should_log(msg.level));
for (auto &sink : sinks_)
{
if (sink->should_log(msg.level))