zip_iterator_test_std_tuple.cpp 612 B

1234567891011121314151617181920212223242526272829
  1. // Copyright (c) 2014 Kohei Takahashi.
  2. //
  3. // Distributed under the Boost Software License, Version 1.0. (See
  4. // accompanying file LICENSE_1_0.txt or copy at
  5. // http://www.boost.org/LICENSE_1_0.txt)
  6. //
  7. // See http://www.boost.org for most recent version including documentation.
  8. #include <boost/config.hpp>
  9. #if !defined(BOOST_NO_CXX11_HDR_TUPLE) && !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES)
  10. #include <tuple>
  11. #include <boost/fusion/adapted/std_tuple.hpp>
  12. #define TUPLE std::tuple
  13. #define MAKE_TUPLE std::make_tuple
  14. #include "detail/zip_iterator_test.ipp"
  15. #else
  16. int main()
  17. {
  18. return 0;
  19. }
  20. #endif