get rid of warning here

2002-01-28  Havoc Pennington  <hp@redhat.com>

	* glib/gmacros.h: get rid of warning here
This commit is contained in:
Havoc Pennington 2002-01-29 00:29:24 +00:00 committed by Havoc Pennington
parent 8fece396e5
commit b19bcd9604
9 changed files with 33 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2002-01-28 Havoc Pennington <hp@redhat.com>
* glib/gmacros.h: get rid of warning here
Mon Jan 28 17:56:10 2002 Owen Taylor <otaylor@redhat.com> Mon Jan 28 17:56:10 2002 Owen Taylor <otaylor@redhat.com>
* glib/gmacros.h: Only use __FUNCTION__, __PRETTY_FUNCTION__ for * glib/gmacros.h: Only use __FUNCTION__, __PRETTY_FUNCTION__ for

View File

@ -1,3 +1,7 @@
2002-01-28 Havoc Pennington <hp@redhat.com>
* glib/gmacros.h: get rid of warning here
Mon Jan 28 17:56:10 2002 Owen Taylor <otaylor@redhat.com> Mon Jan 28 17:56:10 2002 Owen Taylor <otaylor@redhat.com>
* glib/gmacros.h: Only use __FUNCTION__, __PRETTY_FUNCTION__ for * glib/gmacros.h: Only use __FUNCTION__, __PRETTY_FUNCTION__ for

View File

@ -1,3 +1,7 @@
2002-01-28 Havoc Pennington <hp@redhat.com>
* glib/gmacros.h: get rid of warning here
Mon Jan 28 17:56:10 2002 Owen Taylor <otaylor@redhat.com> Mon Jan 28 17:56:10 2002 Owen Taylor <otaylor@redhat.com>
* glib/gmacros.h: Only use __FUNCTION__, __PRETTY_FUNCTION__ for * glib/gmacros.h: Only use __FUNCTION__, __PRETTY_FUNCTION__ for

View File

@ -1,3 +1,7 @@
2002-01-28 Havoc Pennington <hp@redhat.com>
* glib/gmacros.h: get rid of warning here
Mon Jan 28 17:56:10 2002 Owen Taylor <otaylor@redhat.com> Mon Jan 28 17:56:10 2002 Owen Taylor <otaylor@redhat.com>
* glib/gmacros.h: Only use __FUNCTION__, __PRETTY_FUNCTION__ for * glib/gmacros.h: Only use __FUNCTION__, __PRETTY_FUNCTION__ for

View File

@ -1,3 +1,7 @@
2002-01-28 Havoc Pennington <hp@redhat.com>
* glib/gmacros.h: get rid of warning here
Mon Jan 28 17:56:10 2002 Owen Taylor <otaylor@redhat.com> Mon Jan 28 17:56:10 2002 Owen Taylor <otaylor@redhat.com>
* glib/gmacros.h: Only use __FUNCTION__, __PRETTY_FUNCTION__ for * glib/gmacros.h: Only use __FUNCTION__, __PRETTY_FUNCTION__ for

View File

@ -1,3 +1,7 @@
2002-01-28 Havoc Pennington <hp@redhat.com>
* glib/gmacros.h: get rid of warning here
Mon Jan 28 17:56:10 2002 Owen Taylor <otaylor@redhat.com> Mon Jan 28 17:56:10 2002 Owen Taylor <otaylor@redhat.com>
* glib/gmacros.h: Only use __FUNCTION__, __PRETTY_FUNCTION__ for * glib/gmacros.h: Only use __FUNCTION__, __PRETTY_FUNCTION__ for

View File

@ -1,3 +1,7 @@
2002-01-28 Havoc Pennington <hp@redhat.com>
* glib/gmacros.h: get rid of warning here
Mon Jan 28 17:56:10 2002 Owen Taylor <otaylor@redhat.com> Mon Jan 28 17:56:10 2002 Owen Taylor <otaylor@redhat.com>
* glib/gmacros.h: Only use __FUNCTION__, __PRETTY_FUNCTION__ for * glib/gmacros.h: Only use __FUNCTION__, __PRETTY_FUNCTION__ for

View File

@ -1,3 +1,7 @@
2002-01-28 Havoc Pennington <hp@redhat.com>
* glib/gmacros.h: get rid of warning here
Mon Jan 28 17:56:10 2002 Owen Taylor <otaylor@redhat.com> Mon Jan 28 17:56:10 2002 Owen Taylor <otaylor@redhat.com>
* glib/gmacros.h: Only use __FUNCTION__, __PRETTY_FUNCTION__ for * glib/gmacros.h: Only use __FUNCTION__, __PRETTY_FUNCTION__ for

View File

@ -82,7 +82,7 @@
/* Wrap the gcc __PRETTY_FUNCTION__ and __FUNCTION__ variables with /* Wrap the gcc __PRETTY_FUNCTION__ and __FUNCTION__ variables with
* macros, so we can refer to them as strings unconditionally. * macros, so we can refer to them as strings unconditionally.
*/ */
#ifdef __GNUC__ && (__GNUC__ < 3) #if defined (__GNUC__) && (__GNUC__ < 3)
#define G_GNUC_FUNCTION __FUNCTION__ #define G_GNUC_FUNCTION __FUNCTION__
#define G_GNUC_PRETTY_FUNCTION __PRETTY_FUNCTION__ #define G_GNUC_PRETTY_FUNCTION __PRETTY_FUNCTION__
#else /* !__GNUC__ */ #else /* !__GNUC__ */