summaryrefslogtreecommitdiffhomepage
path: root/opentrack-compat
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2016-05-26 13:23:23 +0200
committerStanislaw Halik <sthalik@misaki.pl>2016-05-26 13:23:23 +0200
commitaa54f156f51179025844ab2f864be0333d68539e (patch)
tree32975b669f2c2e97d7a77d4e65b4ff55df875798 /opentrack-compat
parentdeed74dd2153295a2b34ffbada5b58394e614b65 (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')
-rw-r--r--opentrack-compat/options.hpp2
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>