fix: wrong define used for GCC version check
authorMichael Jeanson <mjeanson@efficios.com>
Thu, 5 Aug 2021 20:48:51 +0000 (16:48 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Mon, 18 Oct 2021 19:11:12 +0000 (15:11 -0400)
As far as I can tell, the __GNUC_MAJOR__ define has never existed, the
proper define for the major version is __GNUC__. See
https://gcc.gnu.org/onlinedocs/cpp/Common-Predefined-Macros.html for
more details.

Change-Id: I0d47d524e7efd204fd2f8976311c62e872eb6170
Signed-off-by: Michael Jeanson <mjeanson@efficios.com>
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
include/lttng/constant.h

index 1235c346f5432865d18fe4c134cf4dfdd10e1b92..1d35652f753d61fe38e3cf46ed58022a3bf84b3f 100644 (file)
@@ -20,8 +20,8 @@
 
 #ifndef LTTNG_DEPRECATED
 #if defined (__GNUC__) \
-       && ((__GNUC_MAJOR__ == 4) && (__GNUC_MINOR__ >= 5)  \
-                       || __GNUC_MAJOR__ >= 5)
+       && ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 5)  \
+                       || __GNUC__ >= 5)
 #define LTTNG_DEPRECATED(msg) __attribute__((deprecated(msg)))
 #else
 #define LTTNG_DEPRECATED(msg) __attribute__((deprecated))
This page took 0.025037 seconds and 4 git commands to generate.