summaryrefslogtreecommitdiff
path: root/Userland/Games/Chess/Engine.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Games/Chess/Engine.h')
-rw-r--r--Userland/Games/Chess/Engine.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Games/Chess/Engine.h b/Userland/Games/Chess/Engine.h
index 22c0c072d6..2e728d647d 100644
--- a/Userland/Games/Chess/Engine.h
+++ b/Userland/Games/Chess/Engine.h
@@ -20,7 +20,7 @@ public:
Engine(const Engine&) = delete;
Engine& operator=(const Engine&) = delete;
- virtual void handle_bestmove(const Chess::UCI::BestMoveCommand&);
+ virtual void handle_bestmove(const Chess::UCI::BestMoveCommand&) override;
template<typename Callback>
void get_best_move(const Chess::Board& board, int time_limit, Callback&& callback)