From bb24e0097e5071e1021aac030a4b6967a39eb0f6 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Wed, 29 Mar 2006 15:05:59 +0000 Subject: [PATCH] Added #ifdef CGAL_USE_GMP --- .../test/Triangulation_3/test_regular_traits_3.C | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Triangulation_3/test/Triangulation_3/test_regular_traits_3.C b/Triangulation_3/test/Triangulation_3/test_regular_traits_3.C index fc2b79fb5db..12d56872ff0 100644 --- a/Triangulation_3/test/Triangulation_3/test_regular_traits_3.C +++ b/Triangulation_3/test/Triangulation_3/test_regular_traits_3.C @@ -30,8 +30,12 @@ #include //needs an exact number type to test the traits class -//typedef double NT; +#ifdef CGAL_USE_GMP typedef CGAL::Quotient NT; +#else +typedef CGAL::Quotient NT; +#endif + typedef CGAL::Simple_cartesian K; // Explicit instantiation of the whole class :