From c03d073c6c44885f996b7539a71da0e223009ade Mon Sep 17 00:00:00 2001 From: John Maddock Date: Mon, 7 Jul 2003 11:55:26 +0000 Subject: [PATCH] Hopefully fixed wchar_t support on linux... [SVN r18956] --- include/boost/config/compiler/intel.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/config/compiler/intel.hpp b/include/boost/config/compiler/intel.hpp index 1b040db9..7aa72b4f 100644 --- a/include/boost/config/compiler/intel.hpp +++ b/include/boost/config/compiler/intel.hpp @@ -58,7 +58,7 @@ #if BOOST_INTEL_CXX_VERSION < 700 # define BOOST_NO_INTRINSIC_WCHAR_T #else -# ifndef _WCHAR_T_DEFINED +# if defined(_WCHAR_T_DEFINED) && !defined(_WCHAR_T) # define BOOST_NO_INTRINSIC_WCHAR_T # endif #endif