--- rxvt-unicode/src/rxvtutil.h 2005/12/21 14:19:19 1.13 +++ rxvt-unicode/src/rxvtutil.h 2005/12/21 14:23:30 1.14 @@ -22,8 +22,7 @@ template static inline T clamp (T v, U a, V b) { return v < (T)a ? a : v >(T)b ? b : v; } template static inline void clamp_it (T &v, U a, V b) { v = v < (T)a ? a : v >(T)b ? b : v; } -template -static inline void swap (T& a, U& b) { T t=a; a=(T)b; b=(U)t; } +template static inline void swap (T& a, U& b) { T t=a; a=(T)b; b=(U)t; } // in range including end #define IN_RANGE_INC(val,beg,end) \