https://git.reactos.org/?p=reactos.git;a=commitdiff;h=25723b4239aae5e0692d13...
commit 25723b4239aae5e0692d13f6c237c88441b2aeab Author: Timo Kreuzer timo.kreuzer@reactos.org AuthorDate: Wed Nov 27 13:44:54 2024 +0200 Commit: Timo Kreuzer timo.kreuzer@reactos.org CommitDate: Tue Jan 14 13:34:24 2025 +0200
[VCRUNTIME] Fix a warning with GCC 13 --- sdk/include/vcruntime/vcruntime.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sdk/include/vcruntime/vcruntime.h b/sdk/include/vcruntime/vcruntime.h index cd7d5913407..bc16388bc97 100644 --- a/sdk/include/vcruntime/vcruntime.h +++ b/sdk/include/vcruntime/vcruntime.h @@ -25,7 +25,7 @@ #define _CRT_UNPARENTHESIZE_(...) __VA_ARGS__ #define _CRT_UNPARENTHESIZE(...) _CRT_UNPARENTHESIZE_ __VA_ARGS__
-#ifndef _MSC_VER +#if !defined(_MSC_VER) && !defined(__pragma) #define __pragma(x) _Pragma(_CRT_STRINGIZE(x)) #endif