From 3bf1d39bfb84952d5894d2bcc5f0413f48f57ad1 Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Tue, 7 Sep 2004 23:49:45 +0000 Subject: [PATCH] bug fix [SVN r24964] --- include/boost/mpl/vector/aux_/iterator.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/mpl/vector/aux_/iterator.hpp b/include/boost/mpl/vector/aux_/iterator.hpp index 6dac13c..fdec16f 100644 --- a/include/boost/mpl/vector/aux_/iterator.hpp +++ b/include/boost/mpl/vector/aux_/iterator.hpp @@ -86,7 +86,7 @@ struct advance< v_iter,Distance> { typedef v_iter< Vector - , (n_ + BOOST_MPL_AUX_NESTED_VALUE_WKND(long, Distance::value)) + , (n_ + BOOST_MPL_AUX_NESTED_VALUE_WKND(long, Distance)) > type; };