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 #include <boost/config/workaround.hpp> 11 #include <boost/config/pragma_message.hpp> 12 13 #if BOOST_WORKAROUND(BOOST_MSVC, < 1600) 14 15 BOOST_PRAGMA_MESSAGE("Skipping test on msvc-9.0 and below") main()16int main() {} 17 18 #elif defined(BOOST_GCC) && __cplusplus < 201100 19 20 BOOST_PRAGMA_MESSAGE("Skipping test on g++ in C++03 mode") main()21int main() {} 22 23 #else 24 25 #include <utility> 26 #include <boost/fusion/adapted/std_pair.hpp> 27 28 #define TUPLE std::pair 29 #define MAKE_TUPLE std::make_pair 30 31 #include "detail/zip_iterator_test.ipp" 32 33 #endif 34