Fixed Intel C++ fix (had previously mis-spelled __ICL)

[SVN r15194]
This commit is contained in:
John Maddock
2002-09-07 10:45:47 +00:00
parent 398a9b79f0
commit 4000c1eeed

View File

@ -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 <locale>
// this may be an overly restrictive define, but regex fails without it:
# define BOOST_NO_STD_LOCALE
@ -75,3 +75,4 @@