changeset 14831:f04c573f6acc

intprops.h: adjust another comment to match code change * lib/intprops.h (_GL_INT_SIGNED): Now, E may have side effects.
author Jim Meyering <meyering@redhat.com>
date Sat, 28 May 2011 13:45:12 +0200
parents e56904b12bd1
children ee882e136d24
files ChangeLog lib/intprops.h
diffstat 2 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,7 @@
 	intprops.h: adjust comment to match code change
 	* lib/intprops.h (_GL_INT_CONVERT): Adjust comment: now that E is used
 	only once, it *may* have side effects.  Also fix an unrelated typo.
+	(_GL_INT_SIGNED): Likewise.
 
 2011-05-26  Simon Josefsson  <simon@josefsson.org>
 
--- a/lib/intprops.h
+++ b/lib/intprops.h
@@ -52,7 +52,7 @@
 #define TYPE_SIGNED(t) (! ((t) 0 < (t) -1))
 
 /* Return 1 if the integer expression E, after integer promotion, has
-   a signed type.  E should not have side effects.  */
+   a signed type.  */
 #define _GL_INT_SIGNED(e) (_GL_INT_NEGATE_CONVERT (e, 1) < 0)