mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
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:
parent
ea372366de
commit
6cf97938ec
@ -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
|
||||
|
@ -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))
|
||||
|
Loading…
Reference in New Issue
Block a user