• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
9 #include <boost/config.hpp>
10 
11 #if !defined(BOOST_NO_CXX11_HDR_TUPLE) && !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES)
12 
13 #include <tuple>
14 #include <boost/fusion/adapted/std_tuple.hpp>
15 
16 #define TUPLE      std::tuple
17 #define MAKE_TUPLE std::make_tuple
18 
19 #include "detail/zip_iterator_test.ipp"
20 
21 #else
22 
main()23 int main()
24 {
25     return 0;
26 }
27 
28 #endif
29 
30