From 611ed8ce5e80efc255fd35e23ea7c856aa80474d Mon Sep 17 00:00:00 2001 From: Sylvain Pion Date: Sun, 10 Oct 1999 12:22:46 +0000 Subject: [PATCH] - Replaced CGAL_CFG_NO_EXPLICIT_TEMPLATE_FUNCTION_ARGUMENT_SPECIFICATION by CGAL_CFG_MATCHING_BUG_2. --- .../Interval_arithmetic/test/Interval_arithmetic/tst5.C | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Packages/Interval_arithmetic/test/Interval_arithmetic/tst5.C b/Packages/Interval_arithmetic/test/Interval_arithmetic/tst5.C index c7904711668..4afa428f0d7 100644 --- a/Packages/Interval_arithmetic/test/Interval_arithmetic/tst5.C +++ b/Packages/Interval_arithmetic/test/Interval_arithmetic/tst5.C @@ -2,7 +2,7 @@ #include // Workaround for crappy compilers. -#ifdef CGAL_CFG_NO_EXPLICIT_TEMPLATE_FUNCTION_ARGUMENT_SPECIFICATION +#ifdef CGAL_CFG_MATCHING_BUG_2 #define CGAL_IA_CT double #ifdef CGAL_USE_LEDA #define CGAL_IA_ET leda_real @@ -111,7 +111,7 @@ int test() { NT px, py, la, lb, lc; NT a (1); -#ifndef CGAL_CFG_NO_EXPLICIT_TEMPLATE_FUNCTION_ARGUMENT_SPECIFICATION +#ifndef CGAL_CFG_MATCHING_BUG_2 #ifdef CGAL_USE_GMP CGAL::Filtered_exact< CGAL::Quotient, CGAL::Quotient > qq (3,5); std::cout << (int) CGAL::compare_y_at_xC2(qq,qq,qq,qq,qq); @@ -126,7 +126,7 @@ int test() std::cout << nt << std::endl; #endif // CGAL_USE_LEDA -#endif // CGAL_CFG_NO_EXPLICIT_TEMPLATE_FUNCTION_ARGUMENT_SPECIFICATION +#endif // CGAL_CFG_MATCHING_BUG_2 px=1; py=2; la=3; lb=4; lc=5; std::cout << "Result 1st test: " << (int)CGAL::compare_y_at_xC2(px, py, la, lb, lc); std::cout << " ( == 1 )\n";