Revert e93115f436 because won't compile under mscv 2017

This commit is contained in:
Gabi Melman
2021-07-27 02:43:54 +03:00
committed by GitHub
parent 353c79ca71
commit 816ede3a17

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_FMT_RUNTIME(SPDLOG_FILENAME_T("{}.{}{}")), basename, index, ext);
return fmt::format(SPDLOG_FILENAME_T("{}.{}{}"), basename, index, ext);
}
template<typename Mutex>