Fix for Borland C++ and wchar_t

[SVN r10001]
This commit is contained in:
John Maddock
2001-05-02 10:58:30 +00:00
parent 0424bb266e
commit 976c5e6572

View File

@ -82,6 +82,14 @@ class integer_traits<unsigned char>
{ };
#ifndef BOOST_NO_INTRINSIC_WCHAR_T
#if defined(__BORLANDC__)
#ifndef WCHAR_MIN
#define WCHAR_MIN 0
#endif
#ifndef WCHAR_MAX
#define WCHAR_MAX 0xFFFF
#endif
#endif
template<>
class integer_traits<wchar_t>
: public std::numeric_limits<wchar_t>,