Skip to content

Commit

Permalink
clang-format conformity
Browse files Browse the repository at this point in the history
  • Loading branch information
defiantnerd committed Sep 11, 2023
1 parent daf849b commit fdbce62
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/detail/vst3/os/osutil.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
namespace os
{

class State {
class State
{
public:
State(std::function<void()> on, std::function<void()> off)
: _on(on)
Expand Down
2 changes: 1 addition & 1 deletion src/wrapasvst3.h
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ class ClapAsVst3 : public Steinberg::Vst::SingleComponentEffect,
, _library(lib)
, _libraryIndex(number)
, _creationcontext(context)
, _os_attached( [this]{os::attach(this);},[this]{os::detach(this);})
, _os_attached( [this]{ os::attach(this); }, [this]{ os::detach(this); })
{
}

Expand Down

0 comments on commit fdbce62

Please sign in to comment.