]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/boost/metaparse/v1/repeated1.hpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / boost / metaparse / v1 / repeated1.hpp
1 #ifndef BOOST_METAPARSE_V1_REPEATED1_HPP
2 #define BOOST_METAPARSE_V1_REPEATED1_HPP
3
4 // Copyright Abel Sinkovics (abel@sinkovics.hu) 2009 - 2010.
5 // Distributed under the Boost Software License, Version 1.0.
6 // (See accompanying file LICENSE_1_0.txt or copy at
7 // http://www.boost.org/LICENSE_1_0.txt)
8
9 #include <boost/metaparse/v1/foldl1.hpp>
10 #include <boost/metaparse/v1/impl/back_inserter.hpp>
11
12 #include <boost/mpl/vector.hpp>
13
14 namespace boost
15 {
16 namespace metaparse
17 {
18 namespace v1
19 {
20 template <class P>
21 struct repeated1 :
22 foldl1<P, boost::mpl::vector<>, impl::back_inserter>
23 {};
24 }
25 }
26 }
27
28 #endif
29