Merge pull request #444 from Laurie-Hedge/master

Fixed build by adding missing scope #444
This commit is contained in:
Christophe R 2015-11-17 10:41:46 +01:00
commit 91936ed15a

View File

@ -123,7 +123,7 @@ namespace glm
template <typename T, precision P, template <typename, precision> class vecType>
GLM_FUNC_QUALIFIER vecType<T, P> atan(vecType<T, P> const & a, vecType<T, P> const & b)
{
return detail::functor2<T, P, vecType>::call(atan2, a, b);
return detail::functor2<T, P, vecType>::call(::std::atan2, a, b);
}
using std::atan;