From b29e20a4b0d7bd1e0d3ab6ce3b3c67471b6a9162 Mon Sep 17 00:00:00 2001 From: SweetId <2630750+SweetId@users.noreply.github.com> Date: Wed, 11 Oct 2023 23:34:29 -0400 Subject: [PATCH] add missing virtual dtor --- include/NazaraEditor/Core/Application/BaseApplication.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/include/NazaraEditor/Core/Application/BaseApplication.hpp b/include/NazaraEditor/Core/Application/BaseApplication.hpp index 49b4e36..4e68cfe 100644 --- a/include/NazaraEditor/Core/Application/BaseApplication.hpp +++ b/include/NazaraEditor/Core/Application/BaseApplication.hpp @@ -30,6 +30,7 @@ namespace Nz NazaraSignal(OnEntityDeselected, entt::handle); EditorBaseApplication(); + virtual ~EditorBaseApplication() = default; Nz::Level& GetLevel(); bool NewLevel();