From d43e671dcd402975e879f6f093f8dc9a5ef2e45e Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Thu, 20 Oct 2011 11:30:05 +0100 Subject: [PATCH] Fixed ln_ten constant --- glm/gtx/constants.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/glm/gtx/constants.hpp b/glm/gtx/constants.hpp index d8ea4f05..013f1e7d 100644 --- a/glm/gtx/constants.hpp +++ b/glm/gtx/constants.hpp @@ -146,9 +146,9 @@ namespace glm } template - GLM_FUNC_QUALIFIER T ln_ten(2.30258509299404568401799145468436421) + GLM_FUNC_QUALIFIER T ln_ten() { - return T(); + return T(2.30258509299404568401799145468436421); } template