diff --git a/Kernel_d/include/CGAL/Kernel_d/Vector_d.h b/Kernel_d/include/CGAL/Kernel_d/Vector_d.h index fa17a105a66..49b6ecb2f92 100644 --- a/Kernel_d/include/CGAL/Kernel_d/Vector_d.h +++ b/Kernel_d/include/CGAL/Kernel_d/Vector_d.h @@ -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 direction() const { return Base::direction(); } FT operator* (const Self& w) const