diff --git a/src/OpenMesh/Core/Geometry/Vector11T.hh b/src/OpenMesh/Core/Geometry/Vector11T.hh index 3f3b212d..bdc9db25 100644 --- a/src/OpenMesh/Core/Geometry/Vector11T.hh +++ b/src/OpenMesh/Core/Geometry/Vector11T.hh @@ -125,6 +125,11 @@ class VectorT { constexpr VectorT(T... vs) : values_ { {static_cast(vs)...} } {} + VectorT(const VectorT &rhs) = default; + VectorT(VectorT &&rhs) = default; + VectorT &operator=(const VectorT &rhs) = default; + VectorT &operator=(VectorT &&rhs) = default; + /** * Only for 4-component vectors with division operator on their * Scalar: Dehomogenization.