diff options
author | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-07-17 17:27:14 +0000 |
---|---|---|
committer | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-07-17 17:27:14 +0000 |
commit | 1ae6ed16560b7c458a90c52e7970a6f8482b79af (patch) | |
tree | d4ad3cdbbbc267253c90d548d8d59d8f399a5435 /gcc/cpplib.h | |
parent | 22603265e45132b935d6f920ab15c2c36c97107b (diff) | |
download | gcc-1ae6ed16560b7c458a90c52e7970a6f8482b79af.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55536 138bc75d-0d04-0410-961f-82ee72b054a4
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 05d29ce5472..7c1fe854658 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; |