From 1636ff238c070a0ec6c17f3aefbf3a8642be1ead Mon Sep 17 00:00:00 2001 From: Simon Giraudot Date: Thu, 7 Jan 2016 14:02:26 +0100 Subject: [PATCH] Remove useless copy constructor --- Cartesian_kernel/include/CGAL/Cartesian/Line_3.h | 1 - 1 file changed, 1 deletion(-) diff --git a/Cartesian_kernel/include/CGAL/Cartesian/Line_3.h b/Cartesian_kernel/include/CGAL/Cartesian/Line_3.h index 85f9fb77699..64ece9affa5 100644 --- a/Cartesian_kernel/include/CGAL/Cartesian/Line_3.h +++ b/Cartesian_kernel/include/CGAL/Cartesian/Line_3.h @@ -47,7 +47,6 @@ class LineC3 Vector_3 second; Rep () : first(), second() { } Rep (const Point_3& p, const Vector_3& v) : first(p), second(v) { } - Rep (const Rep& r) : first(r.first), second(r.second) { } }; typedef typename R_::template Handle::type Base;