Fixed shadow warnings for quaternions

master
Martin Gerhardy ago%!(EXTRA string=8 years)
parent bc60ce8cc4
commit d63d803e8f
  1. 4
      glm/gtc/quaternion.inl

@ -117,8 +117,8 @@ namespace detail
{} {}
template <typename T, precision P> template <typename T, precision P>
GLM_FUNC_QUALIFIER GLM_CONSTEXPR tquat<T, P>::tquat(T const & w, T const & x, T const & y, T const & z) GLM_FUNC_QUALIFIER GLM_CONSTEXPR tquat<T, P>::tquat(T const & _w, T const & _x, T const & _y, T const & _z)
: x(x), y(y), z(z), w(w) : x(_x), y(_y), z(_z), w(_w)
{} {}
// -- Conversion constructors -- // -- Conversion constructors --

Loading…
Cancel
Save