added G_GNUC_MAY_ALIAS, suggested by Mathias Hasselmann in bug #335341,

Wed Nov 22 16:09:13 2006  Tim Janik  <timj@gtk.org>

        * glib/gmacros.h: added G_GNUC_MAY_ALIAS, suggested by Mathias
        Hasselmann in bug #335341, fixes bug #335853.
This commit is contained in:
Tim Janik 2006-11-22 15:54:58 +00:00 committed by Tim Janik
parent ea372366de
commit 6cf97938ec
2 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,8 @@
Wed Nov 22 16:09:13 2006 Tim Janik <timj@gtk.org>
* glib/gmacros.h: added G_GNUC_MAY_ALIAS, suggested by Mathias
Hasselmann in bug #335341, fixes bug #335853.
2006-11-15 Matthias Clasen <mclasen@redhat.com>
* m4macros/glib-gettext.m4: Apply a patch from James

View File

@ -95,6 +95,12 @@
#define G_GNUC_DEPRECATED
#endif /* __GNUC__ */
#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 3)
# define G_GNUC_MAY_ALIAS __attribute__((may_alias))
#else
# define G_GNUC_MAY_ALIAS
#endif
#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)
#define G_GNUC_WARN_UNUSED_RESULT \
__attribute__((warn_unused_result))