vector_conversion.cpp 638 B

12345678910111213141516171819
  1. /*=============================================================================
  2. Copyright (c) 2016 Lee Clagett
  3. Use modification and distribution are subject to the Boost Software
  4. License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  5. http://www.boost.org/LICENSE_1_0.txt).
  6. ==============================================================================*/
  7. #include <boost/detail/lightweight_test.hpp>
  8. #include <boost/fusion/container/vector.hpp>
  9. #define FUSION_SEQUENCE boost::fusion::vector
  10. #include "conversion.hpp"
  11. int main()
  12. {
  13. test<test_detail::can_copy>();
  14. return boost::report_errors();
  15. }