Removed unneeded macro definition

This commit is contained in:
gabime
2021-07-19 01:11:45 +03:00
parent e7e8b75a4c
commit 4b3687f1a6
2 changed files with 1 additions and 4 deletions

View File

@@ -53,7 +53,7 @@ struct daily_filename_format_calculator
#if defined(_MSC_VER) && defined(SPDLOG_WCHAR_FILENAMES) // for some reason msvc doesnt allow fmt::runtime(..) with wchar here
return fmt::format(fmt_filename, now_tm);
#else
return fmt::format(SPDLOG_FMT_RUNTIME(fmt_filename), now_tm);
return fmt::format(fmt_filename, now_tm);
#endif
}
};