From b64d4e28ba52e8f00f6e5f414dd2b905b43bf802 Mon Sep 17 00:00:00 2001 From: Briggs Baltzell Date: Sat, 7 Mar 2026 18:39:03 -0600 Subject: [PATCH] Inline empty destructor for `daCLOTH_HIO_c` in `d_menu_cloth` to simplify code. --- include/d/d_menu_cloth.h | 2 +- src/d/d_menu_cloth.cpp | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/include/d/d_menu_cloth.h b/include/d/d_menu_cloth.h index 59c86747f..5baaef0fb 100644 --- a/include/d/d_menu_cloth.h +++ b/include/d/d_menu_cloth.h @@ -108,7 +108,7 @@ public: class daCLOTH_HIO_c : public JORReflexible { public: daCLOTH_HIO_c(); - virtual ~daCLOTH_HIO_c(); + virtual ~daCLOTH_HIO_c() {} public: /* 0x0004 */ s8 mNo; diff --git a/src/d/d_menu_cloth.cpp b/src/d/d_menu_cloth.cpp index 633474af3..dea0317f1 100644 --- a/src/d/d_menu_cloth.cpp +++ b/src/d/d_menu_cloth.cpp @@ -899,9 +899,6 @@ static BOOL dMenu_ClothIsDelete(void*) { return TRUE; } -daCLOTH_HIO_c::~daCLOTH_HIO_c() { -} - // TODO class menu_cloth_class : public fopAc_ac_c { dMCloth_c mCloth;