diff --git a/include/spdlog/logger.h b/include/spdlog/logger.h index da5bf274..a02e82f7 100644 --- a/include/spdlog/logger.h +++ b/include/spdlog/logger.h @@ -329,7 +329,7 @@ protected: { memory_buf_t buf; // little bit faster than fmt::format_to(std::back_inserter(buf), fmt, std::forward(args)...); - fmt::detail::vformat_to(buf, string_view_t{fmt}, fmt::make_format_args(args...), {}); + fmt::detail::vformat_to(buf, string_view_t(fmt), fmt::make_format_args(args...), {}); details::log_msg log_msg(loc, name_, lvl, string_view_t(buf.data(), buf.size())); log_it_(log_msg, log_enabled, traceback_enabled); }