From ef0288a747aefb7910796090726893c105afe11f Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Fri, 23 Sep 2005 22:59:59 +0000 Subject: [PATCH] (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. --- lib/verify.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/verify.h b/lib/verify.h index 406715ffef..fbabd82c03 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. */ -- 2.30.2