deque_move.cpp 706 B

12345678910111213141516171819202122
  1. /*=============================================================================
  2. Copyright (c) 2012 Joel de Guzman
  3. Copyright (c) 2018 Kohei Takahashi
  4. Distributed under the Boost Software License, Version 1.0. (See accompanying
  5. file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. ==============================================================================*/
  7. #define BOOST_FUSION_DONT_USE_PREPROCESSED_FILES
  8. #include <boost/fusion/container/deque/deque.hpp>
  9. #define FUSION_SEQUENCE boost::fusion::deque<std::vector<x>>
  10. #define FUSION_SEQUENCE2 boost::fusion::deque<std::vector<x>, x>
  11. #include "move.hpp"
  12. int main()
  13. {
  14. test();
  15. return boost::report_errors();
  16. }