diff --git a/include/spdlog/common.h b/include/spdlog/common.h index 1b584556..008b2366 100644 --- a/include/spdlog/common.h +++ b/include/spdlog/common.h @@ -12,7 +12,6 @@ #include #include #include -#include #include #include "./source_loc.h" @@ -48,11 +47,11 @@ namespace sinks { class sink; } -#ifdef _WIN32 +#ifdef _WIN32 // In windows, add L prefix for filename literals (e.g. L"filename.txt") #define SPDLOG_FILENAME_T_INNER(s) L##s #define SPDLOG_FILENAME_T(s) SPDLOG_FILENAME_T_INNER(s) -#else +#else #define SPDLOG_FILENAME_T(s) s #endif