change #elif with no expression to #else in G_STRFUNC definition. Thanks

Thu Dec 11 10:31:21 2003  Manish Singh  <yosh@gimp.org>

        * glib/gmacros.h: change #elif with no expression to #else in
        G_STRFUNC definition. Thanks to Damien Carbery, fixes #129101.
This commit is contained in:
Manish Singh 2003-12-11 18:31:46 +00:00 committed by Manish Singh
parent f2241f6e87
commit db16c1be2b
7 changed files with 31 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Thu Dec 11 10:31:21 2003 Manish Singh <yosh@gimp.org>
* glib/gmacros.h: change #elif with no expression to #else in
G_STRFUNC definition. Thanks to Damien Carbery, fixes #129101.
Mon Dec 8 12:02:40 2003 Owen Taylor <otaylor@redhat.com>
* === Released 2.3.1 ===

View File

@ -1,3 +1,8 @@
Thu Dec 11 10:31:21 2003 Manish Singh <yosh@gimp.org>
* glib/gmacros.h: change #elif with no expression to #else in
G_STRFUNC definition. Thanks to Damien Carbery, fixes #129101.
Mon Dec 8 12:02:40 2003 Owen Taylor <otaylor@redhat.com>
* === Released 2.3.1 ===

View File

@ -1,3 +1,8 @@
Thu Dec 11 10:31:21 2003 Manish Singh <yosh@gimp.org>
* glib/gmacros.h: change #elif with no expression to #else in
G_STRFUNC definition. Thanks to Damien Carbery, fixes #129101.
Mon Dec 8 12:02:40 2003 Owen Taylor <otaylor@redhat.com>
* === Released 2.3.1 ===

View File

@ -1,3 +1,8 @@
Thu Dec 11 10:31:21 2003 Manish Singh <yosh@gimp.org>
* glib/gmacros.h: change #elif with no expression to #else in
G_STRFUNC definition. Thanks to Damien Carbery, fixes #129101.
Mon Dec 8 12:02:40 2003 Owen Taylor <otaylor@redhat.com>
* === Released 2.3.1 ===

View File

@ -1,3 +1,8 @@
Thu Dec 11 10:31:21 2003 Manish Singh <yosh@gimp.org>
* glib/gmacros.h: change #elif with no expression to #else in
G_STRFUNC definition. Thanks to Damien Carbery, fixes #129101.
Mon Dec 8 12:02:40 2003 Owen Taylor <otaylor@redhat.com>
* === Released 2.3.1 ===

View File

@ -1,3 +1,8 @@
Thu Dec 11 10:31:21 2003 Manish Singh <yosh@gimp.org>
* glib/gmacros.h: change #elif with no expression to #else in
G_STRFUNC definition. Thanks to Damien Carbery, fixes #129101.
Mon Dec 8 12:02:40 2003 Owen Taylor <otaylor@redhat.com>
* === Released 2.3.1 ===

View File

@ -113,7 +113,7 @@
# define G_STRFUNC ((const char*) (__PRETTY_FUNCTION__))
#elif defined (G_HAVE_ISO_VARARGS)
# define G_STRFUNC ((const char*) (__func__))
#elif
#else
# define G_STRFUNC ((const char*) ("???"))
#endif