From 6b512e4ee74e9bd1606e01a48fde2a69ca10a96a Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Wed, 10 Oct 2007 13:02:57 +0100 Subject: Add macro DBUS_GNUC_EXTENSION (the same as GLib's G_GNUC_EXTENSION) Part of a fix for bug 717. --- dbus/dbus-macros.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'dbus/dbus-macros.h') diff --git a/dbus/dbus-macros.h b/dbus/dbus-macros.h index 461dff39..1ed6ea76 100644 --- a/dbus/dbus-macros.h +++ b/dbus/dbus-macros.h @@ -58,6 +58,12 @@ # define DBUS_DEPRECATED #endif +#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 8) +# define DBUS_GNUC_EXTENSION __extension__ +#else +# define DBUS_GNUC_EXTENSION +#endif + /* Normally docs are in .c files, but there isn't a .c file for this. */ /** * @defgroup DBusMacros Utility macros @@ -118,6 +124,12 @@ * Please don't use this in your own code, consider it * D-Bus internal. */ +/** + * @def DBUS_GNUC_EXTENSION + * + * Tells gcc not to warn about extensions to the C standard in the + * following expression, even if compiling with -pedantic. + */ /** @} */ -- cgit