1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-03-10 15:04:07 +02:00

(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.
This commit is contained in:
Jim Meyering
2005-09-23 23:05:39 +00:00
parent 6d8b96f653
commit 8dbb507ee8

View File

@@ -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. */