Skip to content

Commit

Permalink
Merge pull request #5 from poweraudio/gcc-14-fix
Browse files Browse the repository at this point in the history
Fix compilation errors with GCC 14
  • Loading branch information
paulfd authored Oct 24, 2024
2 parents eb44e51 + 6ab1209 commit c40857a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vstgui/lib/finally.h
Original file line number Diff line number Diff line change
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 c40857a

Please sign in to comment.