Do the same for "pure".

* glib/gmacros.h: Do the same for "pure".
This commit is contained in:
Darin Adler 2001-12-06 22:58:58 +00:00
parent e3516e3ad8
commit 8c613d7d09
9 changed files with 33 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2001-12-06 Darin Adler <darin@bentspoon.com>
* glib/gmacros.h: Do the same for "pure".
2001-12-06 Matthias Clasen <matthiasc@poet.de>
The following patch corrects some function attributes. (#61780)

View File

@ -1,3 +1,7 @@
2001-12-06 Darin Adler <darin@bentspoon.com>
* glib/gmacros.h: Do the same for "pure".
2001-12-06 Matthias Clasen <matthiasc@poet.de>
The following patch corrects some function attributes. (#61780)

View File

@ -1,3 +1,7 @@
2001-12-06 Darin Adler <darin@bentspoon.com>
* glib/gmacros.h: Do the same for "pure".
2001-12-06 Matthias Clasen <matthiasc@poet.de>
The following patch corrects some function attributes. (#61780)

View File

@ -1,3 +1,7 @@
2001-12-06 Darin Adler <darin@bentspoon.com>
* glib/gmacros.h: Do the same for "pure".
2001-12-06 Matthias Clasen <matthiasc@poet.de>
The following patch corrects some function attributes. (#61780)

View File

@ -1,3 +1,7 @@
2001-12-06 Darin Adler <darin@bentspoon.com>
* glib/gmacros.h: Do the same for "pure".
2001-12-06 Matthias Clasen <matthiasc@poet.de>
The following patch corrects some function attributes. (#61780)

View File

@ -1,3 +1,7 @@
2001-12-06 Darin Adler <darin@bentspoon.com>
* glib/gmacros.h: Do the same for "pure".
2001-12-06 Matthias Clasen <matthiasc@poet.de>
The following patch corrects some function attributes. (#61780)

View File

@ -1,3 +1,7 @@
2001-12-06 Darin Adler <darin@bentspoon.com>
* glib/gmacros.h: Do the same for "pure".
2001-12-06 Matthias Clasen <matthiasc@poet.de>
The following patch corrects some function attributes. (#61780)

View File

@ -1,3 +1,7 @@
2001-12-06 Darin Adler <darin@bentspoon.com>
* glib/gmacros.h: Do the same for "pure".
2001-12-06 Matthias Clasen <matthiasc@poet.de>
The following patch corrects some function attributes. (#61780)

View File

@ -49,7 +49,7 @@
*/
#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96)
#define G_GNUC_PURE \
__attribute__((pure))
__attribute__((__pure__))
#else
#define G_GNUC_PURE
#endif