convert_std_tuple.cpp 681 B

1234567891011121314151617181920
  1. /*=============================================================================
  2. Copyright (c) 2015 Kohei Takahashi
  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/config.hpp>
  8. #if defined(BOOST_NO_CXX11_HDR_TUPLE) || \
  9. defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES)
  10. # error "does not meet requirements"
  11. #endif
  12. #include <tuple>
  13. #include <boost/fusion/include/std_tuple.hpp>
  14. #define FUSION_SEQUENCE std::tuple
  15. #include "convert.hpp"