From 1642f22d7259530a81be80d5af7018022fb1b8a2 Mon Sep 17 00:00:00 2001 From: Wishful1 Date: Fri, 19 Jan 2024 05:45:46 +1100 Subject: [PATCH] cleaning up d_a_dummy --- include/d/actor/d_a_dummy.h | 2 +- src/d/actor/d_a_dummy.cpp | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/include/d/actor/d_a_dummy.h b/include/d/actor/d_a_dummy.h index 93ab418bf..31afefb14 100644 --- a/include/d/actor/d_a_dummy.h +++ b/include/d/actor/d_a_dummy.h @@ -14,7 +14,7 @@ namespace daDummy { bool _execute(); bool _draw(); - virtual ~Act_c(); + virtual ~Act_c() {} public: /* Place member variables here */ diff --git a/src/d/actor/d_a_dummy.cpp b/src/d/actor/d_a_dummy.cpp index 042de7d3e..fba60f078 100644 --- a/src/d/actor/d_a_dummy.cpp +++ b/src/d/actor/d_a_dummy.cpp @@ -52,9 +52,6 @@ bool daDummy::Act_c::_draw() { return 1; } -inline daDummy::Act_c::~Act_c() {} - - namespace daDummy { namespace { s32 Mthd_Create(void* i_this) {