浏览代码

Fixed build by adding missing scope

Laurie 10 年之前
父节点
当前提交
f66c5ef004
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      glm/detail/func_trigonometric.inl

+ 1 - 1
glm/detail/func_trigonometric.inl

@@ -123,7 +123,7 @@ namespace glm
 	template <typename T, precision P, template <typename, precision> class vecType>
 	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)
 	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;
 	using std::atan;