From 30fcb71332afa25fbcb76bca22275e4ded3ae31e Mon Sep 17 00:00:00 2001 From: SweetId <2630750+SweetId@users.noreply.github.com> Date: Wed, 11 Oct 2023 20:24:45 -0400 Subject: [PATCH] fix dtor not virtual --- include/NazaraEditor/Core/Application/Action.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/NazaraEditor/Core/Application/Action.hpp b/include/NazaraEditor/Core/Application/Action.hpp index 3e04fdf..a406d89 100644 --- a/include/NazaraEditor/Core/Application/Action.hpp +++ b/include/NazaraEditor/Core/Application/Action.hpp @@ -25,7 +25,7 @@ namespace Nz EditorAction(const Properties& properties) : m_properties(std::make_shared(properties)) {} - ~EditorAction() = default; + virtual ~EditorAction() = default; EditorAction(const EditorAction&) = delete; EditorAction& operator=(const EditorAction&) = delete;