Deal with Vector_d as well

This commit is contained in:
Andreas Fabri 2019-01-07 12:26:03 +01:00
parent 6183456090
commit 30953ef2c1
1 changed files with 6 additions and 0 deletions

View File

@ -71,7 +71,13 @@ class Vector_d : public pR::Vector_d_base
Vector_d(const Self& v) : Base(v) {}
Vector_d(const Base& v) : Base(v) {}
#ifndef CGAL_CFG_NO_CPP0X_DELETED_AND_DEFAULT_FUNCTIONS
Self&
operator=(const Self& v)=default;
#endif
Direction_d<R> direction() const { return Base::direction(); }
FT operator* (const Self& w) const