From 35eaf037bdfca985abf5d349e7355f1d2ed9c77b Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Fri, 1 Aug 2014 16:59:36 +0200 Subject: [PATCH] gmacros.h: add G_GNUC_*_IGNORE_DEPRECATIONS macros for clang https://bugzilla.gnome.org/show_bug.cgi?id=734126 Signed-off-by: Thomas Haller --- glib/gmacros.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/glib/gmacros.h b/glib/gmacros.h index 6403a9960..0bdfa5540 100644 --- a/glib/gmacros.h +++ b/glib/gmacros.h @@ -121,6 +121,12 @@ __pragma (warning (disable : 4996)) #define G_GNUC_END_IGNORE_DEPRECATIONS \ __pragma (warning (pop)) +#elif defined (__clang__) +#define G_GNUC_BEGIN_IGNORE_DEPRECATIONS \ + _Pragma("clang diagnostic push") \ + _Pragma("clang diagnostic ignored \"-Wdeprecated-declarations\"") +#define G_GNUC_END_IGNORE_DEPRECATIONS \ + _Pragma("clang diagnostic pop") #else #define G_GNUC_BEGIN_IGNORE_DEPRECATIONS #define G_GNUC_END_IGNORE_DEPRECATIONS