C++20 support

This commit is contained in:
Gabi Melman
2021-08-10 14:17:20 +03:00
committed by GitHub
parent aa1e794213
commit 53aca9c3d0

View File

@@ -50,7 +50,7 @@ SPDLOG_INLINE filename_t rotating_file_sink<Mutex>::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<typename Mutex>