changeset 6290:23a3585b64aa

(verify_type__): Use `unsigned int' as the bitfield type so we can once again use a positive bitfield width of 1 -- now we don't have to explain why we were using a bitfield width of 2.
author Jim Meyering <jim@meyering.net>
date Fri, 23 Sep 2005 22:59:59 +0000
parents b8c8dc112e16
children 9777e5ef31df
files lib/verify.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lib/verify.h
+++ b/lib/verify.h
@@ -30,7 +30,7 @@
    private to this header file.  */
 
 # define verify_type__(R) \
-    struct { int verify_error_if_negative_size__ : (R) ? 2 : -1; }
+    struct { unsigned int verify_error_if_negative_size__ : (R) ? 1 : -1; }
 
 /* Verify requirement R at compile-time, as a declaration.  */