vector_copy.cpp 714 B

123456789101112131415161718192021
  1. /*=============================================================================
  2. Copyright (c) 1999-2003 Jaakko Jarvi
  3. Copyright (c) 2001-2011 Joel de Guzman
  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. #include <boost/fusion/container/vector/vector.hpp>
  8. #include <boost/fusion/container/generation/make_vector.hpp>
  9. #include <boost/fusion/container/generation/vector_tie.hpp>
  10. #define FUSION_SEQUENCE vector
  11. #include "copy.hpp"
  12. int
  13. main()
  14. {
  15. test<test_detail::can_copy>();
  16. return boost::report_errors();
  17. }