From 42c47a6540f6467bb9ca45bf9844ca2f167d04d0 Mon Sep 17 00:00:00 2001 From: Christian Semmler Date: Mon, 6 Nov 2023 16:17:23 -0500 Subject: [PATCH] Fix clang-format --- LEGO1/mxrect32.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LEGO1/mxrect32.h b/LEGO1/mxrect32.h index fbe0bb0a..070c3d25 100644 --- a/LEGO1/mxrect32.h +++ b/LEGO1/mxrect32.h @@ -74,8 +74,8 @@ public: inline void SetBottom(MxS32 p_bottom) { m_bottom = p_bottom; } private: - static inline MxS32 Min(MxS32 a, MxS32 b) { return a <= b ? a : b; }; - static inline MxS32 Max(MxS32 a, MxS32 b) { return a <= b ? b : a; }; + inline static MxS32 Min(MxS32 a, MxS32 b) { return a <= b ? a : b; }; + inline static MxS32 Max(MxS32 a, MxS32 b) { return a <= b ? b : a; }; MxS32 m_left; MxS32 m_top;