Move the declaration of g_return_if_fail_warning() out of the ifdefs, so
authorMatthias Clasen <mclasen@redhat.com>
Wed, 29 Sep 2004 22:14:49 +0000 (22:14 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Wed, 29 Sep 2004 22:14:49 +0000 (22:14 +0000)
2004-09-29  Matthias Clasen  <mclasen@redhat.com>

* glib/gmessages.h: Move the declaration of
g_return_if_fail_warning() out of the ifdefs, so that
building with G_DISABLE_ASSERT works.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-6
ChangeLog.pre-2-8
glib/gmessages.h

index 5ab4893..d20b201 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2004-09-29  Matthias Clasen  <mclasen@redhat.com>
+
+       * glib/gmessages.h: Move the declaration of 
+       g_return_if_fail_warning() out of the ifdefs, so that
+       building with G_DISABLE_ASSERT works.
+
 2004-09-27  Murray Cumming  <murrayc@murrayc.com>
 
        * glib/goptions.[h|c], glib/glib.symbols: Rename 
index 5ab4893..d20b201 100644 (file)
@@ -1,3 +1,9 @@
+2004-09-29  Matthias Clasen  <mclasen@redhat.com>
+
+       * glib/gmessages.h: Move the declaration of 
+       g_return_if_fail_warning() out of the ifdefs, so that
+       building with G_DISABLE_ASSERT works.
+
 2004-09-27  Murray Cumming  <murrayc@murrayc.com>
 
        * glib/goptions.[h|c], glib/glib.symbols: Rename 
index 5ab4893..d20b201 100644 (file)
@@ -1,3 +1,9 @@
+2004-09-29  Matthias Clasen  <mclasen@redhat.com>
+
+       * glib/gmessages.h: Move the declaration of 
+       g_return_if_fail_warning() out of the ifdefs, so that
+       building with G_DISABLE_ASSERT works.
+
 2004-09-27  Murray Cumming  <murrayc@murrayc.com>
 
        * glib/goptions.[h|c], glib/glib.symbols: Rename 
index 5ab4893..d20b201 100644 (file)
@@ -1,3 +1,9 @@
+2004-09-29  Matthias Clasen  <mclasen@redhat.com>
+
+       * glib/gmessages.h: Move the declaration of 
+       g_return_if_fail_warning() out of the ifdefs, so that
+       building with G_DISABLE_ASSERT works.
+
 2004-09-27  Murray Cumming  <murrayc@murrayc.com>
 
        * glib/goptions.[h|c], glib/glib.symbols: Rename 
index 5ab4893..d20b201 100644 (file)
@@ -1,3 +1,9 @@
+2004-09-29  Matthias Clasen  <mclasen@redhat.com>
+
+       * glib/gmessages.h: Move the declaration of 
+       g_return_if_fail_warning() out of the ifdefs, so that
+       building with G_DISABLE_ASSERT works.
+
 2004-09-27  Murray Cumming  <murrayc@murrayc.com>
 
        * glib/goptions.[h|c], glib/glib.symbols: Rename 
index 2f8c59b..c38fd0e 100644 (file)
@@ -108,6 +108,11 @@ void       _g_log_fallback_handler (const gchar   *log_domain,
                                 const gchar   *message,
                                 gpointer       unused_data) G_GNUC_INTERNAL;
 
+/* Internal function, used to implement the following macros */
+void g_return_if_fail_warning (const char *log_domain,
+                              const char *pretty_function,
+                              const char *expression);
+
 
 #ifndef G_LOG_DOMAIN
 #define G_LOG_DOMAIN    ((gchar*) 0)
@@ -269,11 +274,6 @@ GPrintFunc      g_set_printerr_handler  (GPrintFunc      func);
 
 #ifdef __GNUC__
 
-/* Internal function, used to implement following macros */
-void g_return_if_fail_warning (const char *log_domain,
-                              const char *pretty_function,
-                              const char *expression);
-
 #define g_return_if_fail(expr)         G_STMT_START{                   \
      if G_LIKELY(expr) { } else                                        \
        {                                                               \