From 0851ecc31d04094d50d304700a10db9f84284c60 Mon Sep 17 00:00:00 2001 From: jonschz Date: Mon, 22 Jul 2024 15:23:11 +0200 Subject: [PATCH] Remove redundant inline modifiers --- LEGO1/omni/include/mxtimer.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/LEGO1/omni/include/mxtimer.h b/LEGO1/omni/include/mxtimer.h index 6f33d8b7..ced00435 100644 --- a/LEGO1/omni/include/mxtimer.h +++ b/LEGO1/omni/include/mxtimer.h @@ -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'