mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-17 21:25:40 +00:00
(svn r8057) -Codechange: Declare the "new" max template as static line.
This commit is contained in:
parent
c56ee62ade
commit
e12cf8503d
@ -20,7 +20,11 @@
|
|||||||
#undef max
|
#undef max
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
template <typename T> T max(T a, T b) { return a >= b ? a : b; }
|
template <typename T>
|
||||||
|
static inline T max(T a, T b)
|
||||||
|
{
|
||||||
|
return a >= b ? a : b;
|
||||||
|
}
|
||||||
|
|
||||||
static inline int min(int a, int b) { if (a <= b) return a; return b; }
|
static inline int min(int a, int b) { if (a <= b) return a; return b; }
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user