From: Jim Meyering Date: Fri, 23 Sep 2005 22:59:59 +0000 (+0000) Subject: (verify_type__): Use `unsigned int' as the bitfield type X-Git-Tag: cvs-readonly~2896 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=ef0288a747aefb7910796090726893c105afe11f;p=gnulib.git (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. --- diff --git a/lib/verify.h b/lib/verify.h index 406715ffe..fbabd82c0 100644 --- 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. */