Also add noexcept qualifications on the Wine side

See the last few commits.
This commit is contained in:
Robbert van der Helm
2021-05-14 18:27:19 +02:00
parent 37257298a1
commit a9643577fd
12 changed files with 118 additions and 100 deletions
+2 -2
View File
@@ -58,7 +58,7 @@ class Vst2Bridge : public HostBridge {
std::string endpoint_base_dir,
pid_t parent_pid);
bool inhibits_event_loop() override;
bool inhibits_event_loop() noexcept override;
/**
* Here we'll handle incoming `dispatch()` messages until the sockets get
@@ -66,7 +66,7 @@ class Vst2Bridge : public HostBridge {
*/
void run() override;
void handle_x11_events() override;
void handle_x11_events() noexcept override;
protected:
void close_sockets() override;