From 73e50b0c608292113512de4be35737facc77d9ef Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Sun, 29 Aug 2021 11:18:20 +0300 Subject: [PATCH] Fix incorrect MSVC check --- source/core/attributes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/core/attributes.h b/source/core/attributes.h index 6531698..31cbd4a 100644 --- a/source/core/attributes.h +++ b/source/core/attributes.h @@ -5,7 +5,7 @@ #define DEPRECATED [[deprecated]] #elif defined(__GNUC__) #define DEPRECATED __attribute__((deprecated)) -#elif defined(__MSC_VER) +#elif defined(_MSC_VER) #define DEPRECATED __declspec(deprecated) #endif -- 2.43.0