--- deliantra/server/include/util.h 2010/07/06 20:15:13 1.112 +++ deliantra/server/include/util.h 2011/04/23 04:56:51 1.114 @@ -1,7 +1,7 @@ /* * This file is part of Deliantra, the Roguelike Realtime MMORPG. * - * Copyright (©) 2005,2006,2007,2008,2009,2010 Marc Alexander Lehmann / Robin Redeker / the Deliantra team + * Copyright (©) 2005,2006,2007,2008,2009,2010,2011 Marc Alexander Lehmann / Robin Redeker / the Deliantra team * * Deliantra is free software: you can redistribute it and/or modify it under * the terms of the Affero GNU General Public License as published by the @@ -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; }