Add missing const qualifiers to member functions

This commit is contained in:
Robbert van der Helm
2020-06-06 13:19:38 +02:00
parent 957da62137
commit 8202a6b250
9 changed files with 39 additions and 30 deletions
+2 -2
View File
@@ -87,7 +87,7 @@ class Vst2Bridge {
* individually hosted plugins this check is done implicitely in
* `Vst2Bridge::handle_win32_events()`.
*/
bool should_skip_message_loop();
bool should_skip_message_loop() const;
/**
* Handle events until the plugin exits. The actual events are posted to
@@ -151,7 +151,7 @@ class Vst2Bridge {
private:
/**
* A wrapper around `plugin->dispatcher` that handles the opening and
* closing of GUIs.
* closing of GUIs. Used inside of `handle_dispatch()`.
*/
intptr_t dispatch_wrapper(AEffect* plugin,
int opcode,