diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-06-01 14:20:28 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-06-01 14:20:28 +0100 |
commit | 33f816ab58c4d2c91e7455940011043107a7b1da (patch) | |
tree | 31e854c3ed7505f442f46895929ec07d078a47af /libadhocutil/plugins.h | |
parent | Add MemStream (diff) | |
download | libadhocutil-33f816ab58c4d2c91e7455940011043107a7b1da.tar.bz2 libadhocutil-33f816ab58c4d2c91e7455940011043107a7b1da.tar.xz libadhocutil-33f816ab58c4d2c91e7455940011043107a7b1da.zip |
Don't default destructor
Allows for use of plugin manager in other code (without full definition
of contained types)
Diffstat (limited to 'libadhocutil/plugins.h')
-rw-r--r-- | libadhocutil/plugins.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libadhocutil/plugins.h b/libadhocutil/plugins.h index 42d6062..ce3447a 100644 --- a/libadhocutil/plugins.h +++ b/libadhocutil/plugins.h @@ -100,7 +100,7 @@ namespace AdHoc { typedef std::function<std::optional<std::string> (const std::type_info &, const std::string_view &)> PluginResolver; PluginManager(); - virtual ~PluginManager() = default; + virtual ~PluginManager(); /// Install a plugin. void add(const PluginPtr &); |