From e93115f436dcbeaf5dd664053b4dc53af60766f4 Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Tue, 27 Jul 2021 01:44:52 +0300 Subject: [PATCH] Fixed compile under c++20 and clang 12 --- include/spdlog/sinks/rotating_file_sink-inl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/spdlog/sinks/rotating_file_sink-inl.h b/include/spdlog/sinks/rotating_file_sink-inl.h index f31f5319..81b081b2 100644 --- a/include/spdlog/sinks/rotating_file_sink-inl.h +++ b/include/spdlog/sinks/rotating_file_sink-inl.h @@ -50,7 +50,7 @@ SPDLOG_INLINE filename_t rotating_file_sink::calc_filename(const filename filename_t basename, ext; std::tie(basename, ext) = details::file_helper::split_by_extension(filename); - return fmt::format(SPDLOG_FILENAME_T("{}.{}{}"), basename, index, ext); + return fmt::format(SPDLOG_FMT_RUNTIME(SPDLOG_FILENAME_T("{}.{}{}")), basename, index, ext); } template