Remove useless copy constructor

This commit is contained in:
Simon Giraudot 2016-01-07 14:02:26 +01:00
parent f3bc10ef81
commit 1636ff238c
1 changed files with 0 additions and 1 deletions

View File

@ -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<Rep>::type Base;