Fixed build error detected by clang

This commit is contained in:
Alex Zolotarev 2011-03-19 02:51:38 +00:00 committed by Alex Zolotarev
parent a588440319
commit 411d867eb6

View file

@ -11,6 +11,11 @@
namespace my
{
template <typename T> inline T Abs(T x)
{
return (x < 0 ? -x : x);
}
// Compare floats or doubles for almost equality.
// maxULPs - number of closest floating point values that are considered equal.
// Infinity is treated as almost equal to the largest possible floating point values.
@ -76,11 +81,6 @@ inline T clamp(T x, TMin xmin, TMax xmax)
return x;
}
template <typename T> inline T Abs(T x)
{
return (x < 0 ? -x : x);
}
template <typename T> inline bool between_s(T a, T b, T x)
{
return (a <= x && x <= b);