From 3ef627f0d0ad22bf377479f76cd604692099cc6c Mon Sep 17 00:00:00 2001 From: "Aengus.Jiang" Date: Fri, 27 Jun 2025 11:25:58 +0800 Subject: [PATCH] OPERATOR_LITERAL remove defined(_MSC_VER) --- include/spdlog/fmt/bundled/format.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/spdlog/fmt/bundled/format.h b/include/spdlog/fmt/bundled/format.h index 08d12626..60dd3839 100644 --- a/include/spdlog/fmt/bundled/format.h +++ b/include/spdlog/fmt/bundled/format.h @@ -72,7 +72,7 @@ # endif #endif // FMT_MODULE -#if (defined(__GNUC__) && __GNUC__ < 5) || defined(_MSC_VER) +#if (defined(__GNUC__) && __GNUC__ < 5) # define OPERATOR_LITERAL(suffix) operator"" suffix #else # define OPERATOR_LITERAL(suffix) operator""suffix