From 70199360d3f8bd8b4f0e0b2986dd049b203df7e5 Mon Sep 17 00:00:00 2001 From: Guillaume Melquiond Date: Fri, 23 May 2003 11:53:49 +0000 Subject: [PATCH] Use the recently added BOOST_INTEL macro [SVN r18511] --- include/boost/regex/config.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/regex/config.hpp b/include/boost/regex/config.hpp index a74f1d97..0b80fafc 100644 --- a/include/boost/regex/config.hpp +++ b/include/boost/regex/config.hpp @@ -130,7 +130,7 @@ // We don't make our templates external if the compiler // can't handle it: -#if (defined(BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS) || defined(__HP_aCC) || defined(__MWERKS__) || defined(__COMO__) || defined(__ICL) || defined(__ICC))\ +#if (defined(BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS) || defined(__HP_aCC) || defined(__MWERKS__) || defined(__COMO__) || defined(BOOST_INTEL))\ && !defined(BOOST_MSVC) && !defined(__BORLANDC__) # define BOOST_REGEX_NO_EXTERNAL_TEMPLATES #endif