From c51e90f68fa054f9a37c5d4b7534772fe3b2e8f8 Mon Sep 17 00:00:00 2001 From: Christian Semmler Date: Sun, 3 Sep 2023 09:11:07 -0400 Subject: [PATCH] Explicit inline for aesthetics --- LEGO1/mxdsaction.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LEGO1/mxdsaction.h b/LEGO1/mxdsaction.h index 534b9122..a85e6494 100644 --- a/LEGO1/mxdsaction.h +++ b/LEGO1/mxdsaction.h @@ -47,8 +47,8 @@ class MxDSAction : public MxDSObject void AppendData(MxU16 p_unkLength, const char *p_unkData); - MxU32 GetFlags() { return this->m_flags; } - void SetFlags(MxU32 m_flags) { this->m_flags = m_flags; } + inline MxU32 GetFlags() { return this->m_flags; } + inline void SetFlags(MxU32 m_flags) { this->m_flags = m_flags; } private: MxU32 m_sizeOnDisk;