Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gabime/spdlog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgabime <gmelman1@gmail.comx>2022-11-01 00:51:48 +0300
committergabime <gmelman1@gmail.comx>2022-11-01 00:51:48 +0300
commit678a79c0bed6f8dfaf9c3186c79f559ddd27fd58 (patch)
tree1648e496c3a48e5d3b095db1e3dd6646325dc243
parentfbba6dff20b0c04a0694515168914a62161999d7 (diff)
Fixed syntax error from prev commit
-rw-r--r--include/spdlog/logger.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/spdlog/logger.h b/include/spdlog/logger.h
index bba71980..18c90d06 100644
--- a/include/spdlog/logger.h
+++ b/include/spdlog/logger.h
@@ -398,7 +398,7 @@ protected:
fmt_lib::vformat_to(
std::back_inserter(wbuf), fmt, fmt_lib::make_format_args<fmt_lib::wformat_context>(std::forward<Args>(args)...));
# else
- fmt::vformat_to(fmt::appender(wbuf), fmt, mt::make_format_args<fmt::wformat_context>(std::forward<Args>(args)...));
+ fmt::vformat_to(fmt::appender(wbuf), fmt, fmt::make_format_args<fmt::wformat_context>(std::forward<Args>(args)...));
# endif
memory_buf_t buf;