summaryrefslogtreecommitdiff
path: root/src/shared
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2014-02-20 18:44:51 +0100
committerLennart Poettering <lennart@poettering.net>2014-02-20 18:47:33 +0100
commit8fca4e305f7f10cd739af8851ec341eab654bad0 (patch)
treee8a68e215a182b3031cb9b95d431835d4d29cf7e /src/shared
parentf0f2e63bb2d5cd27e6a2464ee46a670a3159c5da (diff)
macro: add nice macro for disabling -Wnonnull temporarily
Diffstat (limited to 'src/shared')
-rw-r--r--src/shared/macro.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/shared/macro.h b/src/shared/macro.h
index 458e0ebed..5fd67c7ab 100644
--- a/src/shared/macro.h
+++ b/src/shared/macro.h
@@ -59,6 +59,10 @@
_Pragma("GCC diagnostic push"); \
_Pragma("GCC diagnostic ignored \"-Wmissing-prototypes\"")
+#define DISABLE_WARNING_NONNULL \
+ _Pragma("GCC diagnostic push"); \
+ _Pragma("GCC diagnostic ignored \"-Wnonnull\"")
+
#define REENABLE_WARNING \
_Pragma("GCC diagnostic pop")