From 56e3c30e8eeef79bd88f55637591d3a66dfc09e4 Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Fri, 15 Oct 2021 10:53:16 +0300 Subject: [PATCH] fix windows complie --- include/spdlog/logger.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/spdlog/logger.h b/include/spdlog/logger.h index acfb3764..71b95880 100644 --- a/include/spdlog/logger.h +++ b/include/spdlog/logger.h @@ -362,7 +362,7 @@ protected: memory_buf_t buf; details::os::wstr_to_utf8buf(msg, buf); details::log_msg log_msg(loc, name_, lvl, string_view_t(buf.data(), buf.size())); - sink_it(log_msg); + sink_it_(log_msg); } SPDLOG_LOGGER_CATCH(loc) }