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

@@ -42,6 +42,8 @@ class BaseExport Uuid
public:
/// Construction
Uuid();
Uuid(const Uuid&) = default;
Uuid& operator=(const Uuid&) = default;
/// Destruction
virtual ~Uuid();