(svn r8055) -Codechange: Replace the different max, dmax, maxu whatever macros by a simple template function max(), that requires two arguments of the same type. While I'm at it change a variable called "max" to "maxval" in a function that calls max().

This commit is contained in:
celestar
2007-01-11 11:05:01 +00:00
parent 0677847569
commit 08de6b082a
19 changed files with 40 additions and 39 deletions

View File

@@ -20,13 +20,11 @@
#undef max
#endif
static inline int max(int a, int b) { if (a >= b) return a; return b; }
static inline double dmax(double a, double b) { if (a >= b) return a; return b; }
static inline uint64 max64(uint64 a, uint64 b) { if (a >= b) return a; return b; }
template <typename T> 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 uint minu(uint a, uint b) { if (a <= b) return a; return b; }
static inline uint maxu(uint a, uint b) { if (a >= b) return a; return b; }
static inline int clamp(int a, int min, int max)