1 /*============================================================================= 2 Copyright (c) 2012 Joel de Guzman 3 Copyright (c) 2018 Kohei Takahashi 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 #define BOOST_FUSION_DONT_USE_PREPROCESSED_FILES 9 #include <boost/fusion/container/deque/deque.hpp> 10 11 #define FUSION_SEQUENCE boost::fusion::deque<std::vector<x>> 12 #define FUSION_SEQUENCE2 boost::fusion::deque<std::vector<x>, x> 13 14 #include "move.hpp" 15 main()16int main() 17 { 18 test(); 19 20 return boost::report_errors(); 21 } 22 23