From 1c21a80e61983e3b8b2df6a90c681a3b3945484a Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Tue, 15 Jan 2019 18:44:49 +0100 Subject: [PATCH] Fix SDG_Linf --- .../CGAL/Segment_Delaunay_graph_2/Basic_predicates_C2.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/Segment_Delaunay_graph_2/include/CGAL/Segment_Delaunay_graph_2/Basic_predicates_C2.h b/Segment_Delaunay_graph_2/include/CGAL/Segment_Delaunay_graph_2/Basic_predicates_C2.h index c6d3f292454..fab693cce20 100644 --- a/Segment_Delaunay_graph_2/include/CGAL/Segment_Delaunay_graph_2/Basic_predicates_C2.h +++ b/Segment_Delaunay_graph_2/include/CGAL/Segment_Delaunay_graph_2/Basic_predicates_C2.h @@ -110,9 +110,6 @@ public: Homogeneous_point_2(const Point_2& p) : hx_(p.x()), hy_(p.y()), hw_(1) {} - Homogeneous_point_2(const Homogeneous_point_2& other) - : hx_(other.hx_), hy_(other.hy_), hw_(other.hw_) {} - RT hx() const { return hx_; } RT hy() const { return hy_; } RT hw() const { return hw_; }