Skip to content

Commit

Permalink
fix compile error reported in #324
Browse files Browse the repository at this point in the history
  • Loading branch information
scheffle committed Apr 14, 2024
1 parent 1ca48de commit 7cc6b0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vstgui/lib/finally.h
Expand Up @@ -18,7 +18,7 @@ class FinalAction
FinalAction (FinalAction&& other) noexcept
{
action = std::move (other.action);
other.invoke (false);
other.invoke = false;
}
FinalAction (const FinalAction&) = delete;
FinalAction& operator= (const FinalAction&) = delete;
Expand Down

0 comments on commit 7cc6b0e

Please sign in to comment.