Boost MP is turned off for all Apple Clang versions below 11.0.3!

This commit is contained in:
Andreas Fabri 2023-04-21 09:12:00 +01:00
parent a14b6a0327
commit 5b2275b9f8
1 changed files with 12 additions and 0 deletions

View File

@ -1,4 +1,14 @@
#ifdef CGAL_DO_NOT_USE_BOOST_MP
#include <iostream>
int main()
{
std::cout << "The class CGAL::cpp_float is not tested on this platform" << std::endl;
return 0;
}
#else
#include <CGAL/cpp_float.h>
@ -102,3 +112,5 @@ int main()
return 0;
}
#endif