From 6cb625550f810263b4cfcfcbcb5101af07a1c9cb Mon Sep 17 00:00:00 2001 From: Edward Diener Date: Sat, 11 Apr 2020 12:37:31 -0400 Subject: [PATCH] Change to run MP testing in integer for Embarcadero C++ clang-based compilers. --- test/multiprecision_config.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/multiprecision_config.hpp b/test/multiprecision_config.hpp index 623d847..e423111 100644 --- a/test/multiprecision_config.hpp +++ b/test/multiprecision_config.hpp @@ -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