From 97cedefcbf580419f21833e3b40593c438a28167 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Sat, 7 May 2011 16:01:22 +0100 Subject: [PATCH] Fixed missing function definision qualifier --- glm/core/func_integer.inl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/glm/core/func_integer.inl b/glm/core/func_integer.inl index bf6ac2e4..5d4ac27a 100644 --- a/glm/core/func_integer.inl +++ b/glm/core/func_integer.inl @@ -197,7 +197,7 @@ namespace glm // imulExtended template - void imulExtended + GLM_FUNC_QUALIFIER void imulExtended ( genIType const & x, genIType const & y, @@ -259,7 +259,7 @@ namespace glm // bitfieldExtract template - genIUType bitfieldExtract + GLM_FUNC_QUALIFIER genIUType bitfieldExtract ( genIUType const & Value, int const & Offset, @@ -441,7 +441,7 @@ namespace glm // bitCount template - int bitCount(genIUType const & Value) + GLM_FUNC_QUALIFIER int bitCount(genIUType const & Value) { GLM_STATIC_ASSERT(std::numeric_limits::is_integer, "'bitCount' only accept integer values");