Skip to content

Commit

Permalink
PluginProxy: Fix order of constructor initialization list (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinitou authored Feb 8, 2024
1 parent 7b53a68 commit 55ce91f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/clap/helpers/plugin-proxy.hh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace clap { namespace helpers {
template <MisbehaviourHandler h, CheckingLevel l>
class PluginProxy {
public:
PluginProxy(const clap_plugin& plugin, const Host<h, l>& host) : _plugin{plugin}, _host{host} {}
PluginProxy(const clap_plugin& plugin, const Host<h, l>& host) : _host{host}, _plugin{plugin} {}

/////////////////
// clap_plugin //
Expand Down

0 comments on commit 55ce91f

Please sign in to comment.