Browse Source

Merge pull request #444 from Laurie-Hedge/master

Fixed build by adding missing scope #444
Christophe R 10 năm trước cách đây
mục cha
commit
91936ed15a
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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>
 	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;