From db6e84907224b7082a8533e1b02fa9fd94b5eb72 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Mon, 17 May 2010 07:32:56 +0000 Subject: [PATCH] Replace . with -> (not used, but detected by Intel) --- Snap_rounding_2/include/CGAL/Snap_rounding_2.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Snap_rounding_2/include/CGAL/Snap_rounding_2.h b/Snap_rounding_2/include/CGAL/Snap_rounding_2.h index ddc051ccb84..2ab1163aeb7 100644 --- a/Snap_rounding_2/include/CGAL/Snap_rounding_2.h +++ b/Snap_rounding_2/include/CGAL/Snap_rounding_2.h @@ -479,8 +479,8 @@ operator()(const Hot_pixel * h1, const Hot_pixel * h2) const Compare_x_2 compare_x = m_gt.compare_x_2_object(); Compare_y_2 compare_y = m_gt.compare_y_2_object(); - Comparison_result cx = compare_x(h1.get_center(), h2.get_center()); - Comparison_result cy = compare_y(h1.get_center(), h2.get_center()); + Comparison_result cx = compare_x(h1->get_center(), h2->get_center()); + Comparison_result cy = compare_y(h1->get_center(), h2->get_center()); return(cx == SMALLER || cx == EQUAL && cy == SMALLER); }