Skip to content

Commit 2bb871e

Browse files
Trinitoubaconpaul
authored andcommitted
PluginProxy: Fix order of constructor initialization list (#55)
1 parent 0e0a981 commit 2bb871e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/clap/helpers/plugin-proxy.hh

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ namespace clap { namespace helpers {
162162
public PluginThreadPoolProxy<h, l>,
163163
public PluginTimerSupportProxy<h, l> {
164164
public:
165-
PluginProxy(const clap_plugin& plugin, const Host<h, l>& host) : _plugin{plugin}, _host{host} {}
165+
PluginProxy(const clap_plugin& plugin, const Host<h, l>& host) : _host{host}, _plugin{plugin} {}
166166

167167
/////////////////
168168
// clap_plugin //

0 commit comments

Comments
 (0)