Add noexcept qualifications on the plugin side

See the last few commits.
This commit is contained in:
Robbert van der Helm
2021-05-14 17:50:12 +02:00
parent 8ba6e4a937
commit 37257298a1
7 changed files with 36 additions and 22 deletions
+1 -1
View File
@@ -52,7 +52,7 @@ class Vst2PluginBridge : PluginBridge<Vst2Sockets<std::jthread>> {
* Terminate the Wine plugin host process and drop all work when the module
* gets unloaded.
*/
~Vst2PluginBridge();
~Vst2PluginBridge() noexcept override;
// The four below functions are the handlers from the VST2 API. They are
// called through proxy functions in `plugin.cpp`.