mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-12-02 08:13:58 +08:00
*** empty log message ***
From-SVN: r70235
This commit is contained in:
parent
7d73a2bae9
commit
5a9ed69383
@ -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
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user