From 30953ef2c1ccf838e3e474b8bb40137401b751cc Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Mon, 7 Jan 2019 12:26:03 +0100 Subject: [PATCH] Deal with Vector_d as well --- Kernel_d/include/CGAL/Kernel_d/Vector_d.h | 6 ++++++ 1 file changed, 6 insertions(+) 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