mirror of
https://github.com/boostorg/mpl.git
synced 2025-08-06 16:24:35 +02:00
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:
@@ -28,7 +28,11 @@ template<
|
|||||||
>
|
>
|
||||||
struct protect : T
|
struct protect : T
|
||||||
{
|
{
|
||||||
|
#if BOOST_WORKAROUND(__EDG_VERSION__, == 238)
|
||||||
typedef mpl::protect type;
|
typedef mpl::protect type;
|
||||||
|
#else
|
||||||
|
typedef protect type;
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
#if defined(BOOST_MPL_CFG_BROKEN_DEFAULT_PARAMETERS_IN_NESTED_TEMPLATES)
|
#if defined(BOOST_MPL_CFG_BROKEN_DEFAULT_PARAMETERS_IN_NESTED_TEMPLATES)
|
||||||
|
Reference in New Issue
Block a user