From 2877f4eda3d1b0c7431039e3142ecf1a282a34b1 Mon Sep 17 00:00:00 2001 From: LaG1924 <12997935+LaG1924@users.noreply.github.com> Date: Tue, 21 Aug 2018 20:40:38 +0500 Subject: Update glm to 0.9.9.0 --- external/include/glm/gtx/optimum_pow.inl | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'external/include/glm/gtx/optimum_pow.inl') diff --git a/external/include/glm/gtx/optimum_pow.inl b/external/include/glm/gtx/optimum_pow.inl index 2216a74..78b729f 100644 --- a/external/include/glm/gtx/optimum_pow.inl +++ b/external/include/glm/gtx/optimum_pow.inl @@ -3,20 +3,20 @@ namespace glm { - template - GLM_FUNC_QUALIFIER genType pow2(genType const & x) + template + GLM_FUNC_QUALIFIER genType pow2(genType const& x) { return x * x; } - template - GLM_FUNC_QUALIFIER genType pow3(genType const & x) + template + GLM_FUNC_QUALIFIER genType pow3(genType const& x) { return x * x * x; } - template - GLM_FUNC_QUALIFIER genType pow4(genType const & x) + template + GLM_FUNC_QUALIFIER genType pow4(genType const& x) { return (x * x) * (x * x); } -- cgit v1.2.3