From ec48c4c3ad52bb9a620fe2ded646c00d92f07878 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mael=20Rouxel-Labb=C3=A9?= Date: Mon, 3 Jun 2019 10:30:04 +0200 Subject: [PATCH] Enforce correct bit precision Necessary for some old machines whose processor violates the standard --- .../test/Intersections_2/test_intersections_2.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Intersections_2/test/Intersections_2/test_intersections_2.cpp b/Intersections_2/test/Intersections_2/test_intersections_2.cpp index b972971952b..f501bf75211 100644 --- a/Intersections_2/test/Intersections_2/test_intersections_2.cpp +++ b/Intersections_2/test/Intersections_2/test_intersections_2.cpp @@ -5,8 +5,9 @@ #include #include #include -#include +#include +#include #include #include @@ -795,6 +796,8 @@ private: int main() { + CGAL::Set_ieee_double_precision pfr; + Test< CGAL::Simple_cartesian::Type > >().run(); Test< CGAL::Cartesian >().run(); Test< CGAL::Homogeneous::Type > >().run();