Base: fix issue found by lgtm: Inconsistent definition of copy constructor and assignment ('Rule of Two')
This commit is contained in:
@@ -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&);
|
||||
|
||||
Reference in New Issue
Block a user