Remove redundant inline modifiers

This commit is contained in:
jonschz 2024-07-22 15:23:11 +02:00
parent 866ed58727
commit 0851ecc31d

View File

@ -26,11 +26,11 @@ class MxTimer : public MxCore {
MxLong GetStartTime() { return m_startTime; }
MxBool IsRunning() { return m_isRunning; }
inline static MxLong GetLastTimeCalculated() { return g_lastTimeCalculated; }
inline static MxLong GetLastTimeTimerStarted() { return g_lastTimeTimerStarted; }
static MxLong GetLastTimeCalculated() { return g_lastTimeCalculated; }
static MxLong GetLastTimeTimerStarted() { return g_lastTimeTimerStarted; }
// FUNCTION: BETA10 0x1000f320
inline MxLong GetTimeElapsed() { return g_lastTimeCalculated - m_startTime; }
MxLong GetTimeElapsed() { return g_lastTimeCalculated - m_startTime; }
// SYNTHETIC: LEGO1 0x100ae0d0
// MxTimer::`scalar deleting destructor'