]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/metaparse/test/foldl.cpp
Add patch for failing prerm scripts
[ceph.git] / ceph / src / boost / libs / metaparse / test / foldl.cpp
CommitLineData
7c673cae
FG
1// Copyright Abel Sinkovics (abel@sinkovics.hu) 2011.
2// Distributed under the Boost Software License, Version 1.0.
3// (See accompanying file LICENSE_1_0.txt or copy at
4// http://www.boost.org/LICENSE_1_0.txt)
5
6#include <boost/metaparse/foldl.hpp>
7#include <boost/metaparse/v1/impl/back_inserter.hpp>
8
9#include <boost/mpl/vector.hpp>
10
11using boost::metaparse::foldl;
12using boost::metaparse::v1::impl::back_inserter;
13
14using boost::mpl::vector;
15
16namespace
17{
18 template <class P>
19 struct repeated : foldl<P, vector<>, back_inserter> {};
20}
21
22#define TEST_NAME foldl
23
24#include "repeated_test.hpp"
25