--- rxvt-unicode/src/rxvtstl.h 2004/01/17 01:20:01 1.1 +++ rxvt-unicode/src/rxvtstl.h 2004/02/09 07:11:49 1.3 @@ -1,15 +1,14 @@ #ifndef RXVT_STL_H #define RXVT_STL_H -template static inline T min (T a, long b) { return a < b ? a : b; } -template static inline T max (T a, long b) { return a > b ? a : b; } +template static inline T min (T a, U b) { return a < b ? a : b; } +template static inline T max (T a, U b) { return a > b ? a : b; } #include "simplevec.h" template struct vector : simplevec -{ -}; +{ }; #if 0 template