Fixed WCHAR_MIN issues

[SVN r11073]
This commit is contained in:
John Maddock
2001-09-08 12:06:21 +00:00
parent b776265f02
commit 90ff3895af

View File

@ -10,7 +10,7 @@
#include <cwchar>
#include <boost/static_assert.hpp>
#if defined(__BORLANDC__) && !defined(WCHAR_MIN)
#if !defined(WCHAR_MIN)
#define WCHAR_MIN 0
#endif
@ -29,3 +29,4 @@ int main()
return 0;
}