LGTM: [skip ci] fix: Inconsistent definition of copy constructor and assignment ('Rule of Two')

This commit is contained in:
wmayer
2020-07-27 14:39:14 +02:00
parent 3b0eeb63e8
commit 244d7aae41
7 changed files with 51 additions and 0 deletions

View File

@@ -53,6 +53,7 @@ public:
protected:
GeometryExtension();
GeometryExtension(const GeometryExtension &obj) = default;
GeometryExtension& operator= (const GeometryExtension &obj) = default;
void restoreNameAttribute(Base::XMLReader &/*reader*/);