From 4000c1eeed9bab6f56a669f7cd1d0b6903d7638b Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sat, 7 Sep 2002 10:45:47 +0000 Subject: [PATCH] Fixed Intel C++ fix (had previously mis-spelled __ICL) [SVN r15194] --- include/boost/config/stdlib/dinkumware.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/boost/config/stdlib/dinkumware.hpp b/include/boost/config/stdlib/dinkumware.hpp index 0895e150..dc16614b 100644 --- a/include/boost/config/stdlib/dinkumware.hpp +++ b/include/boost/config/stdlib/dinkumware.hpp @@ -59,7 +59,7 @@ # define BOOST_NO_STD_ITERATOR_TRAITS #endif -#if defined(_ICL) && defined(_CPPLIB_VER) && (_CPPLIB_VER <= 310) +#if defined(__ICL) && defined(_CPPLIB_VER) && (_CPPLIB_VER <= 310) // Intel C++ chokes over any non-trivial use of // this may be an overly restrictive define, but regex fails without it: # define BOOST_NO_STD_LOCALE @@ -75,3 +75,4 @@ +