From 5b2275b9f8ca78bd8b543a2e32bb15d7810e6e34 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Fri, 21 Apr 2023 09:12:00 +0100 Subject: [PATCH] Boost MP is turned off for all Apple Clang versions below 11.0.3! --- Number_types/test/Number_types/cpp_float.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Number_types/test/Number_types/cpp_float.cpp b/Number_types/test/Number_types/cpp_float.cpp index 664f69f0099..3d58b27f545 100644 --- a/Number_types/test/Number_types/cpp_float.cpp +++ b/Number_types/test/Number_types/cpp_float.cpp @@ -1,4 +1,14 @@ +#ifdef CGAL_DO_NOT_USE_BOOST_MP +#include + +int main() +{ + std::cout << "The class CGAL::cpp_float is not tested on this platform" << std::endl; + return 0; +} + +#else #include @@ -102,3 +112,5 @@ int main() return 0; } + +#endif