[Xfce4-commits] [apps/mousepad] 08/10: Guard against multiple definitions of G_DISABLE_* macros
noreply at xfce.org
noreply at xfce.org
Sat Jul 19 13:47:17 CEST 2014
This is an automated email from the git hooks/post-receive script.
mbrush pushed a commit to branch master
in repository apps/mousepad.
commit 1487f08e43021c30aae7fbe20d21a24f26cb6fa2
Author: Matthew Brush <mbrush at codebrainz.ca>
Date: Sat Jul 19 02:55:18 2014 -0700
Guard against multiple definitions of G_DISABLE_* macros
Not sure where else they are being defined, but the guards prevent
lots of compiler warnings about re-defining them.
---
mousepad/mousepad-private.h | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/mousepad/mousepad-private.h b/mousepad/mousepad-private.h
index 5be9432..c095159 100644
--- a/mousepad/mousepad-private.h
+++ b/mousepad/mousepad-private.h
@@ -32,8 +32,12 @@
/* In non-debug mode, turn off g_return_*()/g_assert*() debugging checks. */
#ifdef NDEBUG
-# define G_DISABLE_CHECKS
-# define G_DISABLE_ASSERT
+# ifndef G_DISABLE_CHECKS
+# define G_DISABLE_CHECKS
+# endif
+# ifndef G_DISABLE_ASSERT
+# define G_DISABLE_ASSERT
+# endif
#endif
/* These are the only three headers that can be assumed to always be included
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Xfce4-commits
mailing list