MIPSpro 7.3.1 (EDG 238) workaround

[SVN r26850]
This commit is contained in:
Ralf W. Grosse-Kunstleve
2005-01-26 01:58:33 +00:00
parent a3c8e2267c
commit 84d16ad057

View File

@@ -37,7 +37,7 @@ template< typename Tag > struct distance_impl
#if !defined(BOOST_MPL_CFG_NO_NESTED_FORWARDING)
: aux::msvc_eti_base< typename iter_fold<
iterator_range<First,Last>
, long_<0>
, mpl::long_<0>
, next<>
>::type >
{
@@ -45,14 +45,14 @@ template< typename Tag > struct distance_impl
{
typedef typename iter_fold<
iterator_range<First,Last>
, long_<0>
, mpl::long_<0>
, next<>
>::type type;
BOOST_STATIC_CONSTANT(long, value =
(iter_fold<
iterator_range<First,Last>
, long_<0>
, mpl::long_<0>
, next<>
>::type::value)
);