From b2fbc3a3363be31869f5fafbc487a4710d8848ef Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Sun, 20 Aug 2006 19:43:05 +0000 Subject: [PATCH] fixes for min/max --- Intersections_2/test/Intersections_2/tst59.C | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Intersections_2/test/Intersections_2/tst59.C b/Intersections_2/test/Intersections_2/tst59.C index b757f34a8b1..86cdc36975c 100644 --- a/Intersections_2/test/Intersections_2/tst59.C +++ b/Intersections_2/test/Intersections_2/tst59.C @@ -35,9 +35,9 @@ void one_pair(rect_t const & irect1, rect_t const & irect2) CGAL::Object result = CGAL::intersection(irect1, irect2); if (CGAL::assign(irect, result)) { std::cout << "Intersection.\n"; - print(irect.min()); + print((irect.min)()); std::cout << ' '; - print(irect.max()); + print((irect.max)()); std::cout << '\n'; } if (!CGAL::assign(irect, result)) {