From 93612e6c0b0c6ac9093c79090c4ef03fd9bd4176 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sun, 5 Feb 2006 10:19:42 +0000 Subject: [PATCH] QNX does have a wchar.h and WCHAR_MAX/WCHAR_MIN even though there's not much else in it! [SVN r32576] --- include/boost/integer_traits.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/integer_traits.hpp b/include/boost/integer_traits.hpp index 4e00a69..96b3526 100644 --- a/include/boost/integer_traits.hpp +++ b/include/boost/integer_traits.hpp @@ -23,7 +23,7 @@ #include // we need wchar.h for WCHAR_MAX/MIN but not all platforms provide it, // and some may have but not ... -#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 #endif