#ifndef BOOST_METAPARSE_V1_CPP98_IMPL_SKIP_SEQ_HPP #define BOOST_METAPARSE_V1_CPP98_IMPL_SKIP_SEQ_HPP // Copyright Abel Sinkovics (abel@sinkovics.hu) 2013. // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #include #include #include #include #include namespace boost { namespace metaparse { namespace v1 { namespace impl { struct skip_seq { private: template struct change_result : accept< NewResultValue, typename get_remaining::type, typename get_position::type > {}; template struct apply_unchecked : boost::mpl::eval_if< typename is_error< typename P::template apply< typename get_remaining::type, typename get_position::type > >::type, typename P::template apply< typename get_remaining::type, typename get_position::type >, change_result< typename P::template apply< typename get_remaining::type, typename get_position::type >, typename get_result::type > > {}; public: template struct apply : boost::mpl::eval_if< is_error, Result, apply_unchecked > {}; }; } } } } #endif