From e403e785d3a4e709088e16f8e24d58ba4ef3ab9d Mon Sep 17 00:00:00 2001 From: Mikko Johannes Koivunalho Date: Sun, 1 Sep 2019 20:44:42 +0200 Subject: [PATCH] Fix missing macro undefinition If we don't undefine the macro, it will enter the user's namespace. This macro is only for our internal use. Otherwise it would have the "CK_" prefix. Signed-off-by: Mikko Johannes Koivunalho --- src/check.h.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/check.h.in b/src/check.h.in index 3e12bd0..ac86d9b 100644 --- a/src/check.h.in +++ b/src/check.h.in @@ -74,6 +74,8 @@ CK_CPPSTART #define CK_ATTRIBUTE_NORETURN #endif /* GCC 2.5 */ +#undef GCC_VERSION_AT_LEAST + #include #if defined(_MSC_VER) -- 2.50.1