/*============================================================================= Copyright (C) 2015 Kohei Takahshi 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 template void test_copy() { C src; C dst = src; (void)dst; } #if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) template void test_move() { C src; C dst = std::move(src); (void)dst; } #endif template void test_all() { test_copy(); #if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) test_move(); #endif } void test() { using namespace boost::fusion; test_all > >(); test_all, int> >(); test_all > >(); test_all, float> >(); test_all > >(); test_all, int> >(); test_all > >(); test_all, float> >(); test_all > >(); test_all, int> >(); test_all > >(); test_all, float> >(); }