From 4769e3618bb49598d3c4e4bd03c9a160671975e9 Mon Sep 17 00:00:00 2001 From: Peisong Xiao Date: Fri, 5 Jul 2024 22:13:29 -0400 Subject: [PATCH] fixed issue with input.h --- src/input.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input.h b/src/input.h index 1c72513..8fd5d97 100644 --- a/src/input.h +++ b/src/input.h @@ -5,7 +5,7 @@ class input { public: - virtual ~input() = 0; + virtual ~input() = default; virtual game_command get_command() = 0; };