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:
Branko Cibej 2000-06-01 03:36:14 +02:00 committed by Benjamin Kosnik
parent 66dc580a1d
commit b2c62b3c64
2 changed files with 7 additions and 2 deletions

View File

@ -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

View File

@ -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;