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:
@@ -42,6 +42,8 @@ class BaseExport Uuid
|
||||
public:
|
||||
/// Construction
|
||||
Uuid();
|
||||
Uuid(const Uuid&) = default;
|
||||
Uuid& operator=(const Uuid&) = default;
|
||||
/// Destruction
|
||||
virtual ~Uuid();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user