diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2016-05-26 13:23:23 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2016-05-26 13:23:23 +0200 |
commit | aa54f156f51179025844ab2f864be0333d68539e (patch) | |
tree | 32975b669f2c2e97d7a77d4e65b4ff55df875798 /opentrack-compat/options.hpp | |
parent | deed74dd2153295a2b34ffbada5b58394e614b65 (diff) |
compat/options: don't emit a vtable for struct opts
It's for convenience in `struct settings' and not meant for casting to
base class.
Diffstat (limited to 'opentrack-compat/options.hpp')
-rw-r--r-- | opentrack-compat/options.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opentrack-compat/options.hpp b/opentrack-compat/options.hpp index 2853fc91..2ed05f80 100644 --- a/opentrack-compat/options.hpp +++ b/opentrack-compat/options.hpp @@ -246,7 +246,7 @@ namespace options { opts(const QString& name); opts& operator=(const opts&) = delete; opts(const opts&) = delete; - virtual ~opts(); + ~opts(); }; template<typename t, typename q> |