]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/fusion/test/sequence/list_copy.cpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / fusion / test / sequence / list_copy.cpp
1 /*=============================================================================
2 Copyright (c) 1999-2003 Jaakko Jarvi
3 Copyright (c) 2001-2011 Joel de Guzman
4
5 Distributed under the Boost Software License, Version 1.0. (See accompanying
6 file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
7 ==============================================================================*/
8 #include <boost/fusion/container/list/list.hpp>
9 #include <boost/fusion/container/generation/make_list.hpp>
10 #include <boost/fusion/container/generation/list_tie.hpp>
11
12 #define FUSION_SEQUENCE list
13 #include "copy.hpp"
14
15 int
16 main()
17 {
18 test<test_detail::can_copy>();
19 return boost::report_errors();
20 }
21