From 1ae6ed16560b7c458a90c52e7970a6f8482b79af Mon Sep 17 00:00:00 2001 From: neil Date: Wed, 17 Jul 2002 17:27:14 +0000 Subject: * 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 --- gcc/cpplib.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gcc/cpplib.h') 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; -- cgit v1.2.1