diff options
Diffstat (limited to 'Userland/Games/2048/BoardView.cpp')
-rw-r--r-- | Userland/Games/2048/BoardView.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Userland/Games/2048/BoardView.cpp b/Userland/Games/2048/BoardView.cpp index 3608f0aa44..ab1c97e2c3 100644 --- a/Userland/Games/2048/BoardView.cpp +++ b/Userland/Games/2048/BoardView.cpp @@ -1,5 +1,6 @@ /* * Copyright (c) 2020, the SerenityOS developers. + * Copyright (c) 2022, the SerenityOS developers. * * SPDX-License-Identifier: BSD-2-Clause */ @@ -15,10 +16,6 @@ BoardView::BoardView(Game::Board const* board) { } -BoardView::~BoardView() -{ -} - void BoardView::set_board(Game::Board const* board) { if (has_timer()) |