Base: fix warnings from code analysers:

* replace some C-style casts with static_cast
* remove unneeded destructors
* define default copy-constructor and assignment operator
This commit is contained in:
wmayer
2022-03-05 19:03:21 +01:00
parent 9de55d010c
commit a6624ef264
8 changed files with 34 additions and 33 deletions

View File

@@ -134,6 +134,10 @@ protected:
bool forceXML;
int fileVersion;
private:
Writer(const Writer&);
Writer& operator=(const Writer&);
};