From 21b90964289a9bfa8fe71ad6252cca6346e8608e Mon Sep 17 00:00:00 2001 From: Nouri Khalass Date: Sat, 21 Jan 2017 20:46:11 +0100 Subject: [PATCH] Fixed typo --- glm/detail/func_common.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glm/detail/func_common.inl b/glm/detail/func_common.inl index f73bc7e1..2dd94e1f 100644 --- a/glm/detail/func_common.inl +++ b/glm/detail/func_common.inl @@ -195,7 +195,7 @@ namespace detail GLM_FUNC_QUALIFIER static vecType call(vecType const & x) { T const Shift(static_cast(sizeof(T) * 8 - 1)); - vecType const y(L, vecType::type, P>(-x) >> typename make_unsigned::type(Shift)); + vecType const y(vecType::type, P>(-x) >> typename make_unsigned::type(Shift)); return (x >> Shift) | y; }