From 84d16ad057b017e8aacb3a664edc30fe25157186 Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Wed, 26 Jan 2005 01:58:33 +0000 Subject: [PATCH] MIPSpro 7.3.1 (EDG 238) workaround [SVN r26850] --- include/boost/mpl/distance.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/boost/mpl/distance.hpp b/include/boost/mpl/distance.hpp index 6570b75..c2f204e 100644 --- a/include/boost/mpl/distance.hpp +++ b/include/boost/mpl/distance.hpp @@ -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 - , long_<0> + , mpl::long_<0> , next<> >::type > { @@ -45,14 +45,14 @@ template< typename Tag > struct distance_impl { typedef typename iter_fold< iterator_range - , long_<0> + , mpl::long_<0> , next<> >::type type; BOOST_STATIC_CONSTANT(long, value = (iter_fold< iterator_range - , long_<0> + , mpl::long_<0> , next<> >::type::value) );