Fix clang-format

This commit is contained in:
Christian Semmler 2023-11-06 16:17:23 -05:00
parent a2c83a1b69
commit 42c47a6540
No known key found for this signature in database
GPG key ID: 086DAA1360BEEE5C

View file

@ -74,8 +74,8 @@ class MxRect32 {
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;