From 061681c44068fc183346fb6ddf18e7b78cd42c28 Mon Sep 17 00:00:00 2001 From: Aleksey Gurtovoy Date: Wed, 3 Nov 2004 07:59:14 +0000 Subject: [PATCH] fix parameter name [SVN r26098] --- include/boost/mpl/erase.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/boost/mpl/erase.hpp b/include/boost/mpl/erase.hpp index ff9a928..160e9c0 100644 --- a/include/boost/mpl/erase.hpp +++ b/include/boost/mpl/erase.hpp @@ -25,14 +25,14 @@ namespace boost { namespace mpl { template< typename BOOST_MPL_AUX_NA_PARAM(Sequence) - , typename BOOST_MPL_AUX_NA_PARAM(First_or_T) + , typename BOOST_MPL_AUX_NA_PARAM(First) , typename BOOST_MPL_AUX_NA_PARAM(Last) > struct erase : erase_impl< typename sequence_tag::type > - ::template apply< Sequence,First_or_T,Last > + ::template apply< Sequence,First,Last > { - BOOST_MPL_AUX_LAMBDA_SUPPORT(3,erase,(Sequence,First_or_T,Last)) + BOOST_MPL_AUX_LAMBDA_SUPPORT(3,erase,(Sequence,First,Last)) }; BOOST_MPL_AUX_NA_SPEC(3,erase)