emergency fix: all compilers but MIPSpro 7.3 choke on mpl::protect instead of the original plain protect

[SVN r24963]
This commit is contained in:
Ralf W. Grosse-Kunstleve
2004-09-07 21:37:24 +00:00
parent 3394c6c03d
commit 222792897e

View File

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