mirror of
https://github.com/boostorg/iterator.git
synced 2025-07-04 16:26:30 +02:00
22 lines
334 B
C++
22 lines
334 B
C++
![]() |
#include <boost/config.hpp>
|
||
|
|
||
|
#if !defined(BOOST_NO_CXX11_HDR_TUPLE)
|
||
|
|
||
|
#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
|