From ab0051399e6a3885a9a393b1b60d2847766b21ce Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sat, 27 Jul 2002 11:42:04 +0000 Subject: [PATCH] Added como and metrowerks to list of compilers that can't handle the template specialisations used in instances.hpp. [SVN r14624] --- 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 42a993c0..84eb058d 100644 --- a/include/boost/regex/config.hpp +++ b/include/boost/regex/config.hpp @@ -152,7 +152,7 @@ // We don't make our templates external if the compiler // can't handle it: -#if defined(BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS) || defined(__ICL) || defined(__ICC)\ +#if (defined(BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS) || defined(__MWERKS__) || defined(__COMO__) || defined(__ICL) || defined(__ICC))\ && !defined(BOOST_MSVC) && !defined(__BORLANDC__) # define BOOST_REGEX_NO_EXTERNAL_TEMPLATES #endif