Change to run MP testing in integer for Embarcadero C++ clang-based compilers.

This commit is contained in:
Edward Diener
2020-04-11 12:37:31 -04:00
parent c7a22c9bac
commit 6cb625550f

View File

@ -11,8 +11,7 @@
#if (defined(BOOST_MSVC) && (BOOST_MSVC < 1500)) || \
(defined(__clang_major__) && (__clang_major__ == 3) && (__clang_minor__ < 2)) || \
(defined(BOOST_GCC) && defined(BOOST_GCC_CXX11) && BOOST_GCC < 40800) || \
defined(BOOST_EMBTC)
(defined(BOOST_GCC) && defined(BOOST_GCC_CXX11) && BOOST_GCC < 40800)
#define DISABLE_MP_TESTS
#endif