From 39ce140cf7ef394b5d92222faec5c974ef97a2fb Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sat, 1 May 2004 10:32:58 +0000 Subject: [PATCH] Added comment on Intel compiler problems. [SVN r22712] --- include/boost/type_traits/is_integral.hpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/boost/type_traits/is_integral.hpp b/include/boost/type_traits/is_integral.hpp index 8c3f523..374d4ad 100644 --- a/include/boost/type_traits/is_integral.hpp +++ b/include/boost/type_traits/is_integral.hpp @@ -35,6 +35,9 @@ BOOST_TT_AUX_BOOL_TRAIT_CV_SPEC1(is_integral,bool,true) BOOST_TT_AUX_BOOL_TRAIT_CV_SPEC1(is_integral,char,true) #ifndef BOOST_NO_INTRINSIC_WCHAR_T +// If the following line fails to compile and you're using the Intel +// compiler, see http://lists.boost.org/MailArchives/boost-users/msg06567.php, +// and define BOOST_NO_INTRINSIC_WCHAR_T on the command line. BOOST_TT_AUX_BOOL_TRAIT_CV_SPEC1(is_integral,wchar_t,true) #endif