Fixed shadow warnings for quaternions

This commit is contained in:
Martin Gerhardy 2017-01-03 20:22:54 +01:00
parent bc60ce8cc4
commit d63d803e8f

View File

@ -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 --