More code style fixes

This commit is contained in:
Jonas Trappenberg
2015-01-20 20:26:33 -08:00
parent 8c76af1806
commit deb3e45791

View File

@@ -78,9 +78,9 @@ struct typeInfo
return 1;
}
static inline bool isEqual( T _x, T _y )
static inline bool isEqual( T x, T y )
{
return _x == _y;
return x == y;
}
static inline T absVal( T t )