diff -r e1b950c65cb4 -r 837f303aceeb epoc32/include/stdapis/boost/mpl/aux_/clear_impl.hpp --- a/epoc32/include/stdapis/boost/mpl/aux_/clear_impl.hpp Wed Mar 31 12:27:01 2010 +0100 +++ b/epoc32/include/stdapis/boost/mpl/aux_/clear_impl.hpp Wed Mar 31 12:33:34 2010 +0100 @@ -1,9 +1,8 @@ -#ifndef BOOST_MPL_SET_AUX_CLEAR_IMPL_HPP_INCLUDED -#define BOOST_MPL_SET_AUX_CLEAR_IMPL_HPP_INCLUDED +#ifndef BOOST_MPL_AUX_CLEAR_IMPL_HPP_INCLUDED +#define BOOST_MPL_AUX_CLEAR_IMPL_HPP_INCLUDED -// Copyright Aleksey Gurtovoy 2003-2004 -// Copyright David Abrahams 2003-2004 +// Copyright Aleksey Gurtovoy 2000-2004 // // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at @@ -11,25 +10,26 @@ // // See http://www.boost.org/libs/mpl for documentation. -// $Source: /cvsroot/boost/boost/boost/mpl/set/aux_/clear_impl.hpp,v $ -// $Date: 2004/09/02 15:41:02 $ -// $Revision: 1.2 $ +// $Source: /cvsroot/boost/boost/boost/mpl/aux_/clear_impl.hpp,v $ +// $Date: 2004/09/02 15:40:43 $ +// $Revision: 1.6 $ #include -#include -#include +#include +#include namespace boost { namespace mpl { -template<> -struct clear_impl< aux::set_tag > +// no default implementation; the definition is needed to make MSVC happy + +template< typename Tag > +struct clear_impl { - template< typename Set > struct apply - { - typedef set0<> type; - }; + template< typename Sequence > struct apply; }; +BOOST_MPL_ALGORITM_TRAITS_LAMBDA_SPEC(1, clear_impl) + }} -#endif // BOOST_MPL_SET_AUX_CLEAR_IMPL_HPP_INCLUDED +#endif // BOOST_MPL_AUX_CLEAR_IMPL_HPP_INCLUDED