Base: fix issue found by lgtm: Inconsistent definition of copy constructor and assignment ('Rule of Two')

This commit is contained in:
wmayer
2021-12-28 17:47:20 +01:00
parent 07e2dc8c9c
commit cdac3e9a34

View File

@@ -149,6 +149,10 @@ public:
{
return (*this = *rhs);
}
Vector& operator= (const Vector& rhs)
{
return (*this = *rhs);
}
Vector& operator= (PyObject* rhsp);
Vector& operator= (const Base::Vector3d&);