Skip zip_iterator_test_std_pair on g++ in C++03 mode

This commit is contained in:
Peter Dimov 2017-12-24 04:56:47 +02:00
parent 386dbf1054
commit 0013c5c4f0

View File

@ -13,10 +13,12 @@
#if BOOST_WORKAROUND(BOOST_MSVC, < 1600)
BOOST_PRAGMA_MESSAGE("Skipping test on msvc-9.0 and below")
int main() {}
int main()
{
}
#elif defined(BOOST_GCC) && __cplusplus < 201100
BOOST_PRAGMA_MESSAGE("Skipping test on g++ in C++03 mode")
int main() {}
#else
@ -28,4 +30,4 @@ int main()
#include "detail/zip_iterator_test.ipp"
#endif // #if BOOST_WORKAROUND
#endif