From 3344c8e9a0c63db4a2382ece73b68065e7d9b7a4 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Wed, 22 Oct 2014 16:03:44 +0200 Subject: [PATCH] Fixed build error --- glm/detail/func_integer.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glm/detail/func_integer.inl b/glm/detail/func_integer.inl index 60c224c6..d00c170e 100644 --- a/glm/detail/func_integer.inl +++ b/glm/detail/func_integer.inl @@ -251,7 +251,7 @@ namespace glm { GLM_STATIC_ASSERT(std::numeric_limits::is_integer, "'bitCount' only accept integer values"); - return bitCount(tvec1(x)).x; + return bitCount(tvec1(x)).x; } template class vecType>