From 926f5ec0ca90c8553ccacc42a8438b07b25d1227 Mon Sep 17 00:00:00 2001 From: Panagiotis Cheilaris Date: Wed, 11 Sep 2013 20:05:29 +0200 Subject: [PATCH] change type of numpts_in_pqr to unsigned int Signed-off-by: Panagiotis Cheilaris --- .../Voronoi_vertex_sqrt_field_new_C2.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Segment_Delaunay_graph_Linf_2/include/CGAL/Segment_Delaunay_graph_Linf_2/Voronoi_vertex_sqrt_field_new_C2.h b/Segment_Delaunay_graph_Linf_2/include/CGAL/Segment_Delaunay_graph_Linf_2/Voronoi_vertex_sqrt_field_new_C2.h index a68df086a1a..8804ff5abcb 100644 --- a/Segment_Delaunay_graph_Linf_2/include/CGAL/Segment_Delaunay_graph_Linf_2/Voronoi_vertex_sqrt_field_new_C2.h +++ b/Segment_Delaunay_graph_Linf_2/include/CGAL/Segment_Delaunay_graph_Linf_2/Voronoi_vertex_sqrt_field_new_C2.h @@ -2516,7 +2516,7 @@ private: bool is_q_point = q.is_point(); bool is_r_point = r.is_point(); - int numpts_in_pqr = + unsigned int numpts_in_pqr = ((is_p_point)? 1 : 0) + ((is_q_point)? 1 : 0) + ((is_r_point)? 1 : 0) ;