2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 12:27:43 +00:00

Runtime: Default destructors where applicable

Same behavior, but allows the destructors to be trivial, etc.
This commit is contained in:
Lioncash
2020-03-31 04:50:24 -04:00
parent d167293552
commit 1415265ef2
4 changed files with 4 additions and 4 deletions

View File

@@ -20,7 +20,7 @@
namespace urde {
static logvisor::Module Log("urde::CModelData");
CModelData::~CModelData() {}
CModelData::~CModelData() = default;
CModelData::CModelData() {}
CModelData CModelData::CModelDataNull() { return CModelData(); }