mirror of https://github.com/CGAL/cgal
Boost MP is turned off for all Apple Clang versions below 11.0.3!
This commit is contained in:
parent
a14b6a0327
commit
5b2275b9f8
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue