From 8acf96659f9570ce2a5c85e5e53ae66a47440db3 Mon Sep 17 00:00:00 2001 From: gabime Date: Thu, 5 Dec 2024 17:53:31 +0200 Subject: [PATCH] Removed uneeded include traits from common.h --- include/spdlog/common.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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