2015-08-23 23:46:44 -04:00
|
|
|
#include <boost/config.hpp>
|
|
|
|
|
2017-04-08 16:53:02 -04:00
|
|
|
#if !defined(BOOST_NO_CXX11_HDR_TUPLE) && !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES)
|
2015-08-23 23:46:44 -04:00
|
|
|
|
|
|
|
#include <tuple>
|
|
|
|
#include <boost/fusion/adapted/std_tuple.hpp>
|
|
|
|
|
|
|
|
#define ZI_TUPLE std::tuple
|
|
|
|
#define ZI_MAKE_TUPLE std::make_tuple
|
|
|
|
#define ZI_TUPLE_GET(n) std::get<n>
|
|
|
|
|
|
|
|
#include "detail/zip_iterator_test_original.ipp"
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|