From c0725c9ae3cee86262f9657dc9a93df34c09c1e0 Mon Sep 17 00:00:00 2001 From: Christian Semmler Date: Tue, 15 Jul 2025 16:38:58 -0700 Subject: [PATCH] Remove LEGO1_EXPORT from inline function --- LEGO1/lego/legoomni/include/legoinputmanager.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LEGO1/lego/legoomni/include/legoinputmanager.h b/LEGO1/lego/legoomni/include/legoinputmanager.h index ee34db49..04ac7294 100644 --- a/LEGO1/lego/legoomni/include/legoinputmanager.h +++ b/LEGO1/lego/legoomni/include/legoinputmanager.h @@ -164,7 +164,7 @@ class LegoInputManager : public MxPresenter { LEGO1_EXPORT MxBool HandleRumbleEvent(float p_strength, float p_lowFrequencyRumble, float p_highFrequencyRumble, MxU32 p_milliseconds); LEGO1_EXPORT void UpdateLastInputMethod(SDL_Event* p_event); - LEGO1_EXPORT const auto& GetLastInputMethod() { return m_lastInputMethod; } + const auto& GetLastInputMethod() { return m_lastInputMethod; } // clang-format off enum class SDL_KeyboardID_v : SDL_KeyboardID {};