Fixed fastDistance ambiguity #215

This commit is contained in:
Christophe Riccio
2014-06-20 01:09:50 +02:00
parent 2935cdc18e
commit 7fe8a1944c
4 changed files with 51 additions and 3 deletions

View File

@@ -92,8 +92,7 @@ namespace detail
{
GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'length' only accept floating-point inputs");
genType sqr = x * x;
return sqrt(sqr);
return abs(x);
}
template <typename T, precision P>