From e5ee35323af77a9017f9154c704d59aefd877ea7 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Sun, 4 May 2014 16:34:46 +0200 Subject: [PATCH] Fixed non-utf8 character #196 --- glm/detail/type_half.inl | 3 +-- readme.txt | 5 +++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/glm/detail/type_half.inl b/glm/detail/type_half.inl index c304d9ac..29801357 100644 --- a/glm/detail/type_half.inl +++ b/glm/detail/type_half.inl @@ -38,8 +38,7 @@ namespace detail volatile float f = 1e10; for(int i = 0; i < 10; ++i) - f *= f; // this will overflow before - // the for­loop terminates + f *= f; // this will overflow before the for loop terminates return f; } diff --git a/readme.txt b/readme.txt index aaf3e217..0e7528eb 100644 --- a/readme.txt +++ b/readme.txt @@ -36,6 +36,11 @@ GLM is a header only library, there is nothing to build, just include it. More informations in GLM manual: http://glm.g-truc.net/glm.pdf +================================================================================ +GLM 0.9.5.4: 2014-0X-XX +-------------------------------------------------------------------------------- +- Fixed non-utf8 space character #196 + ================================================================================ GLM 0.9.5.3: 2014-04-02 --------------------------------------------------------------------------------