Skip to content

Commit

Permalink
Revert e93115f because won't compile under mscv 2017
Browse files Browse the repository at this point in the history
  • Loading branch information
gabime authored Jul 26, 2021
1 parent 353c79c commit 816ede3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/spdlog/sinks/rotating_file_sink-inl.h
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit 816ede3

Please sign in to comment.