QNX does have a wchar.h and WCHAR_MAX/WCHAR_MIN even though there's not much else in it!

[SVN r32576]
This commit is contained in:
John Maddock
2006-02-05 10:19:42 +00:00
parent d9f5b1bbf9
commit 93612e6c0b

View File

@ -23,7 +23,7 @@
#include <limits.h> #include <limits.h>
// we need wchar.h for WCHAR_MAX/MIN but not all platforms provide it, // we need wchar.h for WCHAR_MAX/MIN but not all platforms provide it,
// and some may have <wchar.h> but not <cwchar> ... // and some may have <wchar.h> but not <cwchar> ...
#if !defined(BOOST_NO_INTRINSIC_WCHAR_T) && (!defined(BOOST_NO_CWCHAR) || defined(sun) || defined(__sun)) #if !defined(BOOST_NO_INTRINSIC_WCHAR_T) && (!defined(BOOST_NO_CWCHAR) || defined(sun) || defined(__sun) || defined(__QNX__))
#include <wchar.h> #include <wchar.h>
#endif #endif