forked from organicmaps/organicmaps
Fixed build error detected by clang
This commit is contained in:
parent
a588440319
commit
411d867eb6
1 changed files with 5 additions and 5 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue