diff options
Diffstat (limited to 'runtime/plugin.h')
| -rw-r--r-- | runtime/plugin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/plugin.h b/runtime/plugin.h index 909c710a96..4885b2e3c0 100644 --- a/runtime/plugin.h +++ b/runtime/plugin.h @@ -60,7 +60,7 @@ class Plugin { Plugin(const Plugin& other); // Create move constructor for putting this in a list - Plugin(Plugin&& other) + Plugin(Plugin&& other) noexcept : library_(other.library_), dlopen_handle_(other.dlopen_handle_) { other.dlopen_handle_ = nullptr; |