(svn r13607) -Fix (r13606): some coding style issues got fixed but some got/stayed broken

This commit is contained in:
skidd13
2008-06-22 15:41:38 +00:00
parent 640e547886
commit b4ef380c49
4 changed files with 36 additions and 10 deletions

View File

@@ -192,7 +192,8 @@ static FORCEINLINE uint16 ClampToU16(const uint64 a)
* @return The absolute difference between the given scalars
*/
template <typename T>
static FORCEINLINE T Delta(const T a, const T b) {
static FORCEINLINE T Delta(const T a, const T b)
{
return (a < b) ? b - a : a - b;
}