From 222792897ee0aa511a3078791de639138b2c04ff Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Tue, 7 Sep 2004 21:37:24 +0000 Subject: [PATCH] emergency fix: all compilers but MIPSpro 7.3 choke on mpl::protect instead of the original plain protect [SVN r24963] --- include/boost/mpl/protect.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/boost/mpl/protect.hpp b/include/boost/mpl/protect.hpp index 2a17974..19931bc 100644 --- a/include/boost/mpl/protect.hpp +++ b/include/boost/mpl/protect.hpp @@ -28,7 +28,11 @@ template< > struct protect : T { +#if BOOST_WORKAROUND(__EDG_VERSION__, == 238) typedef mpl::protect type; +#else + typedef protect type; +#endif }; #if defined(BOOST_MPL_CFG_BROKEN_DEFAULT_PARAMETERS_IN_NESTED_TEMPLATES)