mirror of
https://github.com/boostorg/iterator.git
synced 2025-05-09 23:23:54 +00:00
Skip zip_iterator_test_std_pair on msvc-9.0 and below
This commit is contained in:
parent
486721bbfe
commit
386dbf1054
@ -6,6 +6,20 @@
|
||||
//
|
||||
// See http://www.boost.org for most recent version including documentation.
|
||||
|
||||
#include <boost/config.hpp>
|
||||
#include <boost/config/workaround.hpp>
|
||||
#include <boost/config/pragma_message.hpp>
|
||||
|
||||
#if BOOST_WORKAROUND(BOOST_MSVC, < 1600)
|
||||
|
||||
BOOST_PRAGMA_MESSAGE("Skipping test on msvc-9.0 and below")
|
||||
|
||||
int main()
|
||||
{
|
||||
}
|
||||
|
||||
#else
|
||||
|
||||
#include <utility>
|
||||
#include <boost/fusion/adapted/std_pair.hpp>
|
||||
|
||||
@ -14,3 +28,4 @@
|
||||
|
||||
#include "detail/zip_iterator_test.ipp"
|
||||
|
||||
#endif // #if BOOST_WORKAROUND
|
||||
|
Loading…
x
Reference in New Issue
Block a user