Commit b2c62b3c by Branko Cibej Committed by Benjamin Kosnik

limits_generic.h (numeric_limits<wchar_t>): Use WCHAR_MIN and WCHAR_MAX instead…

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
parent 66dc580a
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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment