summaryrefslogtreecommitdiff
path: root/Userland/Games/2048/BoardView.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Games/2048/BoardView.h')
-rw-r--r--Userland/Games/2048/BoardView.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Userland/Games/2048/BoardView.h b/Userland/Games/2048/BoardView.h
index 9b97632f67..5a3b7a27d0 100644
--- a/Userland/Games/2048/BoardView.h
+++ b/Userland/Games/2048/BoardView.h
@@ -1,5 +1,6 @@
/*
* Copyright (c) 2020, the SerenityOS developers.
+ * Copyright (c) 2022, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
@@ -13,7 +14,7 @@ class BoardView final : public GUI::Frame {
C_OBJECT(BoardView);
public:
- virtual ~BoardView() override;
+ virtual ~BoardView() override = default;
void set_board(Game::Board const* board);
Function<void(Game::Direction)> on_move;