*** empty log message ***

From-SVN: r70235
This commit is contained in:
Doug Gregor 2003-08-07 23:01:26 +00:00 committed by Doug Gregor
parent 7d73a2bae9
commit 5a9ed69383
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2003-08-07 Doug Gregor <dgregor@apple.com>
* include/bits/char_traits.h (char_traits::not_eof): Match operand
types in ? :.
2003-08-07 Bernardo Innocenti <bernie@develer.com>
PR libstdc++/11784

View File

@ -140,7 +140,7 @@ namespace __gnu_cxx
static int_type
not_eof(const int_type& __c)
{ return !eq_int_type(__c, eof()) ? __c : char_type(); }
{ return !eq_int_type(__c, eof()) ? __c : to_int_type(char_type()); }
};
template<typename _CharT>