More tests with fusion sequence as tuple

This commit is contained in:
Edward Diener
2015-08-23 23:46:44 -04:00
parent a0533d97f5
commit 878812c42f
7 changed files with 918 additions and 847 deletions

View File

@ -0,0 +1,21 @@
#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