--- deliantra/server/include/util.h 2010/07/06 20:15:13 1.112 +++ deliantra/server/include/util.h 2011/04/22 02:03:11 1.113 @@ -116,6 +116,7 @@ template static inline T sign0 (T v) { return v ? sign (v) : 0; } +//clashes with C++0x template static inline T copysign (T a, U b) { return a > 0 ? b : -b; }