From 5574a6e97d87a3b6c1ec615606bd6b2384c28299 Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Sat, 9 Nov 2002 16:26:47 +0000 Subject: [PATCH] MIPSpro 7.3.1.3m can't support enable_if [SVN r16175] --- include/boost/function/function_base.hpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/boost/function/function_base.hpp b/include/boost/function/function_base.hpp index 16fb900..23d880b 100644 --- a/include/boost/function/function_base.hpp +++ b/include/boost/function/function_base.hpp @@ -47,6 +47,9 @@ namespace boost { namespace python { namespace objects { #if defined(__GNUC__) && __GNUC__ < 3 || ( __GNUC__ == 3 && __GNUC_MINOR__ <= 2 ) && !(BOOST_NO_CONFIG) # define BOOST_FUNCTION_NO_ENABLE_IF #endif +#if defined(__sgi) && defined(_COMPILER_VERSION) && _COMPILER_VERSION <= 730 && !defined(BOOST_NO_CONFIG) +# define BOOST_FUNCTION_NO_ENABLE_IF +#endif #if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) namespace boost {