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:
@@ -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. */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user