1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:27:34 +00:00

Games: Cast unused smart-pointer return values to void

This commit is contained in:
Sam Atkins 2021-12-02 12:53:33 +00:00 committed by Andreas Kling
parent d95e50643e
commit 0e2fa09f52
6 changed files with 11 additions and 11 deletions

View file

@ -303,7 +303,7 @@ void Game::mouseup_event(GUI::MouseEvent& event)
for (auto& to_intersect : m_focused_cards) {
mark_intersecting_stacks_dirty(to_intersect);
stack.push(to_intersect);
m_focused_stack->pop();
(void)m_focused_stack->pop();
}
update_score(-1);