We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dca53d3 commit bd02219Copy full SHA for bd02219
include/rcutils/stdatomic_helper.h
@@ -32,9 +32,9 @@
32
// The my__has_feature avoids a preprocessor error when you check for it and
33
// use it on the same line below.
34
#if defined(__has_feature)
35
-#define my__has_feature(...) __has_feature(__VAR_ARGS__)
+#define my__has_feature __has_feature
36
#else
37
-#define my__has_feature(...) 0
+#define my__has_feature(x) 0
38
#endif
39
40
#if !defined(__clang__) && defined(__GNUC__) && __GNUC__ <= 4 && __GNUC_MINOR__ <= 9
0 commit comments