Don't include <cwchar> if BOOST_NO_CWCHAR is defined.

[SVN r11189]
This commit is contained in:
Darin Adler
2001-09-22 02:51:51 +00:00
parent 0d43e1f720
commit 4515a28307

View File

@@ -18,6 +18,10 @@
* are almost certainly incorrect for any other platform.
*/
/* The above comment is almost certainly out of date. This file works
* on systems other than SGI MIPSpro C++ now.
*/
/*
* Revision history:
* 10 Aug 2001:
@@ -35,9 +39,12 @@
#include <climits>
#include <cfloat>
#include <cwchar> // for WCHAR_MIN and WCHAR_MAX
#include <boost/config.hpp>
#ifndef BOOST_NO_CWCHAR
#include <cwchar> // for WCHAR_MIN and WCHAR_MAX
#endif
#if defined(__sparc) || defined(__sparc__) || defined(__powerpc__) || defined(__ppc__) || defined(__hppa) || defined(_MIPSEB)
#define BOOST_BIG_ENDIAN
#elif defined(__i386__)