Added como and metrowerks to list of compilers that can't handle the template specialisations used in instances.hpp.

[SVN r14624]
This commit is contained in:
John Maddock
2002-07-27 11:42:04 +00:00
parent 61ea1b566a
commit ab0051399e

View File

@ -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