eti workarounds

[SVN r26507]
This commit is contained in:
Dave Abrahams
2004-12-14 22:12:04 +00:00
parent 462a81c9b8
commit b09811392e
2 changed files with 17 additions and 0 deletions

View File

@@ -35,6 +35,14 @@ struct key_type
BOOST_MPL_AUX_NA_SPEC(2, key_type)
#if BOOST_MPL_CFG_MSVC_60_ETI_BUG
template<>
struct key_type<int, int>
{
typedef int type;
};
#endif
}}
#endif // BOOST_MPL_KEY_TYPE_HPP_INCLUDED

View File

@@ -35,6 +35,15 @@ struct value_type
BOOST_MPL_AUX_NA_SPEC(2, value_type)
#if BOOST_MPL_CFG_MSVC_60_ETI_BUG
template<>
struct value_type<int, int>
{
typedef int type;
};
#endif
}}
#endif // BOOST_MPL_VALUE_TYPE_HPP_INCLUDED