diff --git a/ChangeLog b/ChangeLog index a48780eea..64a585bab 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2001-12-06 Darin Adler + + * glib/gmacros.h: Do the same for "pure". + 2001-12-06 Matthias Clasen The following patch corrects some function attributes. (#61780) diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index a48780eea..64a585bab 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,3 +1,7 @@ +2001-12-06 Darin Adler + + * glib/gmacros.h: Do the same for "pure". + 2001-12-06 Matthias Clasen The following patch corrects some function attributes. (#61780) diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index a48780eea..64a585bab 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,7 @@ +2001-12-06 Darin Adler + + * glib/gmacros.h: Do the same for "pure". + 2001-12-06 Matthias Clasen The following patch corrects some function attributes. (#61780) diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12 index a48780eea..64a585bab 100644 --- a/ChangeLog.pre-2-12 +++ b/ChangeLog.pre-2-12 @@ -1,3 +1,7 @@ +2001-12-06 Darin Adler + + * glib/gmacros.h: Do the same for "pure". + 2001-12-06 Matthias Clasen The following patch corrects some function attributes. (#61780) diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index a48780eea..64a585bab 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,7 @@ +2001-12-06 Darin Adler + + * glib/gmacros.h: Do the same for "pure". + 2001-12-06 Matthias Clasen The following patch corrects some function attributes. (#61780) diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index a48780eea..64a585bab 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,7 @@ +2001-12-06 Darin Adler + + * glib/gmacros.h: Do the same for "pure". + 2001-12-06 Matthias Clasen The following patch corrects some function attributes. (#61780) diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index a48780eea..64a585bab 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,7 @@ +2001-12-06 Darin Adler + + * glib/gmacros.h: Do the same for "pure". + 2001-12-06 Matthias Clasen The following patch corrects some function attributes. (#61780) diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index a48780eea..64a585bab 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,7 @@ +2001-12-06 Darin Adler + + * glib/gmacros.h: Do the same for "pure". + 2001-12-06 Matthias Clasen The following patch corrects some function attributes. (#61780) diff --git a/glib/gmacros.h b/glib/gmacros.h index 204b24d1a..5002d85e7 100644 --- a/glib/gmacros.h +++ b/glib/gmacros.h @@ -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