From 7e2fb0aa47def525bb74a6e64e1c8e132cf9b873 Mon Sep 17 00:00:00 2001 From: Jens Maurer Date: Thu, 17 May 2001 20:17:43 +0000 Subject: [PATCH] Intel C++ on Linux doesn't have the SGI STL interface for hash_map and friends [SVN r10121] --- include/boost/config.hpp | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/include/boost/config.hpp b/include/boost/config.hpp index cb332c29..0a24d31f 100644 --- a/include/boost/config.hpp +++ b/include/boost/config.hpp @@ -263,7 +263,13 @@ # endif # endif -// Kai C++ ------------------------------------------------------------------// +// Intel on Linux --------------------------------------------------------- + +#elif defined __ICC +# define BOOST_NO_SLIST +# define BOOST_NO_HASH + +// Kai C++ ---------------------------------------------------------------- #elif defined __KCC # define BOOST_NO_SLIST @@ -329,7 +335,7 @@ # define BOOST_NO_CV_SPECIALIZATIONS # define BOOST_NO_CV_VOID_SPECIALIZATIONS -// Intel -------------------------------------------------------------------// +// Intel on Windows --------------------------------------------------------// # elif defined __ICL # include // not sure this is the right way to do this -JGS