Fix for missing WCHAR_MAX/WCHAR_MIN defines.

[SVN r23538]
This commit is contained in:
John Maddock
2004-07-14 11:00:11 +00:00
parent 2ab6de5d5c
commit 7bcb01dc06

View File

@ -25,6 +25,15 @@
# define BOOST_NO_CV_VOID_SPECIALIZATIONS
# define BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS
# define BOOST_NO_DEDUCED_TYPENAME
// workaround for missing WCHAR_MAX/WCHAR_MIN:
#include <climits>
#include <cwchar>
#ifndef WCHAR_MAX
# define WCHAR_MAX 0xffff
#endif
#ifndef WCHAR_MIN
# define WCHAR_MIN 0
#endif
#endif
#if (__BORLANDC__ <= 0x564)