2012-08-31 14:32:08 +00:00
|
|
|
/*=============================================================================
|
|
|
|
Copyright (c) 2012 Joel de Guzman
|
|
|
|
|
|
|
|
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)
|
|
|
|
==============================================================================*/
|
|
|
|
#define BOOST_FUSION_DONT_USE_PREPROCESSED_FILES // $$$ JDG temp $$$
|
|
|
|
|
|
|
|
#include <boost/config.hpp>
|
|
|
|
|
2012-11-26 18:44:46 +00:00
|
|
|
#if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
|
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"
|
|
|
|
|
|
|
|
#else
|
|
|
|
#include <boost/detail/lightweight_test.hpp>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int
|
|
|
|
main()
|
|
|
|
{
|
2012-11-26 18:44:46 +00:00
|
|
|
#if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
|
2012-08-31 14:32:08 +00:00
|
|
|
test();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return boost::report_errors();
|
|
|
|
}
|
|
|
|
|