mirror of https://github.com/CGAL/cgal
Deal with Vector_d as well
This commit is contained in:
parent
6183456090
commit
30953ef2c1
|
|
@ -71,7 +71,13 @@ class Vector_d : public pR::Vector_d_base
|
||||||
|
|
||||||
Vector_d(const Self& v) : Base(v) {}
|
Vector_d(const Self& v) : Base(v) {}
|
||||||
Vector_d(const Base& 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(); }
|
Direction_d<R> direction() const { return Base::direction(); }
|
||||||
|
|
||||||
FT operator* (const Self& w) const
|
FT operator* (const Self& w) const
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue