mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-22 17:42:04 +08:00
limits_generic.h (numeric_limits<wchar_t>): Use WCHAR_MIN and WCHAR_MAX instead of WCHART_MIN and WCHART_MAX.
2000-05-31 Branko Cibej <branko.cibej@hermes.si> * bits/limits_generic.h (numeric_limits<wchar_t>): Use WCHAR_MIN and WCHAR_MAX instead of WCHART_MIN and WCHART_MAX. From-SVN: r34327
This commit is contained in:
parent
66dc580a1d
commit
b2c62b3c64
@ -1,3 +1,8 @@
|
||||
2000-05-31 Branko Cibej <branko.cibej@hermes.si>
|
||||
|
||||
* bits/limits_generic.h (numeric_limits<wchar_t>): Use WCHAR_MIN
|
||||
and WCHAR_MAX instead of WCHART_MIN and WCHART_MAX.
|
||||
|
||||
2000-05-31 Nathan Myers <ncm@cantrip.org>
|
||||
|
||||
* docs/thanks.html: edit own credits
|
||||
|
@ -304,9 +304,9 @@ namespace std {
|
||||
static const bool is_specialized = true;
|
||||
|
||||
static wchar_t min() throw()
|
||||
{ return WCHART_MIN; }
|
||||
{ return WCHAR_MIN; }
|
||||
static wchar_t max() throw()
|
||||
{ return WCHART_MAX; }
|
||||
{ return WCHAR_MAX; }
|
||||
|
||||
static const int digits = 31;
|
||||
static const int digits10 = 9;
|
||||
|
Loading…
Reference in New Issue
Block a user