PVS: V690 The copy constructor is declared as private in the 'PropertySheet' class, but the default copy assignment operator will still be generated by compiler. It is dangerous to use such a class.

This commit is contained in:
wmayer
2020-07-17 17:19:08 +02:00
parent 2a50ac2252
commit 6c94ed51ab

View File

@@ -182,6 +182,7 @@ protected:
private:
PropertySheet(const PropertySheet & other);
PropertySheet& operator= (const PropertySheet&);
/* friends */