Do for Point_d the same as for Vector_d

This commit is contained in:
Andreas Fabri 2019-01-09 17:26:04 +01:00
parent bbec783e08
commit 3c1e450be2
1 changed files with 6 additions and 1 deletions

View File

@ -80,7 +80,12 @@ public:
Point_d(const Self &p) : Base(p) {}
Point_d(const Base& p) : Base(p) {}
#ifndef CGAL_CFG_NO_CPP0X_DELETED_AND_DEFAULT_FUNCTIONS
Self&
operator=(const Self& v)=default;
#endif
Vector_d<R> operator-(const Origin& o) const
{ return Base::operator-(o); }
Vector_d<R> operator-(const Self& q) const