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.
This commit is contained in:
Anonymous Maarten 2023-06-15 03:04:57 +02:00
parent e07bfce936
commit 3c82bfbc5f
2 changed files with 2 additions and 6 deletions

View File

@ -1,6 +1 @@
#include "mxomnicreateparam.h"
MxOmniCreateParamBase::~MxOmniCreateParamBase()
{
}

View File

@ -5,7 +5,8 @@
class MxOmniCreateParamBase
{
public:
~MxOmniCreateParamBase();
~MxOmniCreateParamBase() {
}
virtual void vtable00(){}
};