From c1fddb9a6ae5c3af6865461a7295788a341011a2 Mon Sep 17 00:00:00 2001 From: milek7 Date: Fri, 8 Jan 2021 01:57:58 +0100 Subject: [PATCH] Codechange: Check if access __attribute__ is supported before trying to use it. --- src/stdafx.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/stdafx.h b/src/stdafx.h index 9e2eb2aef8..7d5a8754f6 100644 --- a/src/stdafx.h +++ b/src/stdafx.h @@ -136,8 +136,12 @@ # endif #endif /* __GNUC__ || __clang__ */ -#if defined(__GNUC__) -# define NOACCESS(args) __attribute__ ((access (none, args))) +#if defined __has_attribute +# if __has_attribute (access) +# define NOACCESS(args) __attribute__ ((access (none, args))) +# else +# define NOACCESS(args) +# endif #else # define NOACCESS(args) #endif