From 2aa7924b30db79b22c8223c1dd32bf554e434863 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Janiszewski?= Date: Fri, 14 Jul 2017 09:17:42 +0200 Subject: [PATCH] Add required virtual destructor to IGameAction --- src/openrct2/actions/IGameAction.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/openrct2/actions/IGameAction.h b/src/openrct2/actions/IGameAction.h index a0379294a2..0e764bd824 100644 --- a/src/openrct2/actions/IGameAction.h +++ b/src/openrct2/actions/IGameAction.h @@ -108,4 +108,6 @@ public: * Apply the game action and change the game state. */ virtual GameActionResult Execute(uint32 flags = 0) const abstract; + + virtual ~IGameAction() {}; };