diff options
author | Attila Molnar <attilamolnar@hush.com> | 2016-08-11 10:58:21 +0200 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2016-08-11 10:58:21 +0200 |
commit | 85456f0bd30684ae27ec74f94af152a139660a03 (patch) | |
tree | 31293be8a6483ca87b0d23b04de31acccdc2af1e | |
parent | f09ca8cf45a23680c16aab9068fb42f761098a93 (diff) |
Remove virtual destructor of class Version
No classes inherit from it and it is only used as the return value from Module::GetVersion() which returns it by value
-rw-r--r-- | include/modules.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/modules.h b/include/modules.h index e836f19dd..7acab3cf6 100644 --- a/include/modules.h +++ b/include/modules.h @@ -201,8 +201,6 @@ class CoreExport Version /** Complex version information, including linking compatability data */ Version(const std::string &desc, int flags, const std::string& linkdata); - - virtual ~Version() {} }; class CoreExport DataProvider : public ServiceProvider |