mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 23:48:12 -05:00
Fix clang-format
This commit is contained in:
parent
a2c83a1b69
commit
42c47a6540
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue