From 1cc7448c439aa007a4725b8ad3ecfaa5a676e5ec Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Sat, 3 Nov 2012 00:34:19 +0100 Subject: [PATCH] Fixed CUDA 5 warning due to parameter name mismatch between the declaration and the definition --- glm/core/func_integer.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glm/core/func_integer.hpp b/glm/core/func_integer.hpp index c9ae0c09..1044e273 100644 --- a/glm/core/func_integer.hpp +++ b/glm/core/func_integer.hpp @@ -152,7 +152,7 @@ namespace glm /// @see GLSL bitfieldReverse man page /// @see GLSL 4.20.8 specification, section 8.8 Integer Functions template - genIUType bitfieldReverse(genIUType const & value); + genIUType bitfieldReverse(genIUType const & Value); /// Returns the number of bits set to 1 in the binary representation of value. ///