Fix websocket C++11ism

This commit is contained in:
Robin Gareus 2020-08-30 21:15:33 +02:00
parent af79240c81
commit 8eb4dcb675
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
4 changed files with 11 additions and 4 deletions

View file

@ -241,7 +241,7 @@ ArdourFeedback::observe_strip_plugins (uint32_t strip_id, ArdourMixerStrip::Plug
boost::bind<void> (PluginParamValueObserver (), this, strip_id, plugin_id, param_id,
boost::weak_ptr<AutomationControl>(control)),
event_loop ());
} catch (ArdourMixerNotFoundException) {
} catch (ArdourMixerNotFoundException& e) {
/* ignore */
}
}