diff options
author | Neil Booth <neil@daikokuya.co.uk> | 2002-07-17 17:27:14 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2002-07-17 17:27:14 +0000 |
commit | 23ff022370f122c6736883f059c54f89fb5163cb (patch) | |
tree | d4ad3cdbbbc267253c90d548d8d59d8f399a5435 /gcc/cpplib.h | |
parent | db50171f40e718db91d21f13828a2e74f879c04c (diff) | |
download | gcc-23ff022370f122c6736883f059c54f89fb5163cb.zip gcc-23ff022370f122c6736883f059c54f89fb5163cb.tar.gz gcc-23ff022370f122c6736883f059c54f89fb5163cb.tar.bz2 |
cppexp.c (cpp_interpret_integer, [...]): Clarify and correct use of "bool" variables.
* cppexp.c (cpp_interpret_integer, append_digit, parse_defined,
eval_token): Clarify and correct use of "bool" variables.
* cpplib.h (struct cpp_options): Similarly.
* cppmacro.c (parse_params, _cpp_save_parameter): Ditto.
* cpptrad.c (recursive_macro): Similarly.
From-SVN: r55536
Diffstat (limited to 'gcc/cpplib.h')
-rw-r--r-- | gcc/cpplib.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cpplib.h b/gcc/cpplib.h index 05d29ce..7c1fe85 100644 --- a/gcc/cpplib.h +++ b/gcc/cpplib.h @@ -402,8 +402,8 @@ struct cpp_options ints and target wide characters, respectively. */ size_t precision, char_precision, int_precision, wchar_precision; - /* Nonzero means chars (wide chars) are unsigned. */ - unsigned char unsigned_char, unsigned_wchar; + /* True means chars (wide chars) are unsigned. */ + bool unsigned_char, unsigned_wchar; /* Nonzero means __STDC__ should have the value 0 in system headers. */ unsigned char stdc_0_in_system_headers; |