From a8785bdb7acde8fd3aebb387aa98981ae2bd37ec Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Fri, 30 Dec 2016 20:42:18 +0100 Subject: [PATCH] Fixed build --- glm/detail/func_matrix_simd.inl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/glm/detail/func_matrix_simd.inl b/glm/detail/func_matrix_simd.inl index ba95a0ec..99491866 100644 --- a/glm/detail/func_matrix_simd.inl +++ b/glm/detail/func_matrix_simd.inl @@ -11,7 +11,7 @@ namespace glm{ namespace detail { template - struct compute_matrixCompMult + struct compute_matrixCompMult { GLM_STATIC_ASSERT(detail::is_aligned

::value, "Specialization requires aligned"); @@ -27,7 +27,7 @@ namespace detail }; template - struct compute_transpose + struct compute_transpose { GLM_FUNC_QUALIFIER static mat<4, 4, float, P> call(mat<4, 4, float, P> const & m) { @@ -40,7 +40,7 @@ namespace detail }; template - struct compute_determinant + struct compute_determinant { GLM_FUNC_QUALIFIER static float call(mat<4, 4, float, P> const& m) { @@ -49,7 +49,7 @@ namespace detail }; template - struct compute_inverse + struct compute_inverse { GLM_FUNC_QUALIFIER static mat<4, 4, float, P> call(mat<4, 4, float, P> const& m) {