From 3c82bfbc5fb2ff31318e996395dd707fc565dea7 Mon Sep 17 00:00:00 2001 From: Anonymous Maarten Date: Thu, 15 Jun 2023 03:04:57 +0200 Subject: [PATCH] Implement the MxOmniCreateParamBase destructor inline Because of this, ISLE should no longer have to compile mxomnicreateparambase.obj. I didn't modify isle.mak, because I don't have the MSVC 4.20 GUI set-up. --- LEGO1/mxomnicreateparambase.cpp | 5 ----- LEGO1/mxomnicreateparambase.h | 3 ++- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/LEGO1/mxomnicreateparambase.cpp b/LEGO1/mxomnicreateparambase.cpp index fe7c5836..0091785d 100644 --- a/LEGO1/mxomnicreateparambase.cpp +++ b/LEGO1/mxomnicreateparambase.cpp @@ -1,6 +1 @@ #include "mxomnicreateparam.h" - -MxOmniCreateParamBase::~MxOmniCreateParamBase() -{ - -} diff --git a/LEGO1/mxomnicreateparambase.h b/LEGO1/mxomnicreateparambase.h index fee0a488..e1aa1d0c 100644 --- a/LEGO1/mxomnicreateparambase.h +++ b/LEGO1/mxomnicreateparambase.h @@ -5,7 +5,8 @@ class MxOmniCreateParamBase { public: - ~MxOmniCreateParamBase(); + ~MxOmniCreateParamBase() { + } virtual void vtable00(){} };