From 5af6a81428deb4542b01eed33f450057c7fa89c2 Mon Sep 17 00:00:00 2001 From: Martin Baute Date: Thu, 3 Mar 2016 10:28:35 +0100 Subject: [PATCH] Patch suggested by darkinsanity, http://forum.osdev.org/viewtopic.php?p=256346#p256346 --- internals/_PDCLIB_aux.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internals/_PDCLIB_aux.h b/internals/_PDCLIB_aux.h index 0a31e86..484e930 100644 --- a/internals/_PDCLIB_aux.h +++ b/internals/_PDCLIB_aux.h @@ -96,7 +96,7 @@ #endif #ifdef __has_attribute - #define _PDCLIB_HAS_ATTRIBUTE(x) __has_builtin(x) + #define _PDCLIB_HAS_ATTRIBUTE(x) __has_attribute(x) #else #define _PDCLIB_HAS_ATTRIBUTE(x) (0) #endif -- 2.40.0