We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d494b4 commit d2496a4Copy full SHA for d2496a4
ext/dom/lexbor/lexbor/core/sbst.h
@@ -15,8 +15,12 @@ extern "C" {
15
16
#include "lexbor/core/base.h"
17
18
-#if defined(__has_attribute) && __has_attribute(nonstring) && defined(__GNUC__) && !defined(__clang__) && __GNUC__ >= 15
19
-# define LXB_NONSTRING __attribute__((nonstring))
+#ifdef(__has_attribute)
+# if __has_attribute(nonstring) && defined(__GNUC__) && !defined(__clang__) && __GNUC__ >= 15
20
+# define LXB_NONSTRING __attribute__((nonstring))
21
+# else
22
+# define LXB_NONSTRING
23
+# endif
24
#else
25
# define LXB_NONSTRING
26
#endif
0 commit comments