2012-08-31 14:32:08 +00:00
|
|
|
/*=============================================================================
|
|
|
|
Copyright (c) 2012 Joel de Guzman
|
2018-01-29 12:03:19 +09:00
|
|
|
Copyright (c) 2018 Kohei Takahashi
|
2012-08-31 14:32:08 +00:00
|
|
|
|
|
|
|
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)
|
|
|
|
==============================================================================*/
|
2018-02-24 16:00:57 +09:00
|
|
|
#define BOOST_FUSION_DONT_USE_PREPROCESSED_FILES
|
2012-08-31 14:32:08 +00:00
|
|
|
#include <boost/fusion/container/vector/vector.hpp>
|
|
|
|
|
2013-02-04 11:52:18 +00:00
|
|
|
#define FUSION_SEQUENCE boost::fusion::vector<std::vector<x>>
|
|
|
|
#define FUSION_SEQUENCE2 boost::fusion::vector<std::vector<x>, x>
|
|
|
|
|
2012-08-31 14:32:08 +00:00
|
|
|
#include "move.hpp"
|
|
|
|
|
2018-01-29 12:03:19 +09:00
|
|
|
int main()
|
2012-08-31 14:32:08 +00:00
|
|
|
{
|
|
|
|
test();
|
|
|
|
|
|
|
|
return boost::report_errors();
|
|
|
|
}
|
|
|
|
|