Fixed declaration and definition mismatch

This commit is contained in:
Christophe Riccio
2014-02-08 20:49:34 +01:00
parent 7ce6df4078
commit 2b17a90859
2 changed files with 3 additions and 9 deletions

View File

@@ -61,7 +61,7 @@ namespace glm
//! Returns the log2 of x. Can be reliably using to compute mipmap count from the texture size.
//! From GLM_GTX_integer extension.
template <typename genIUType>
genIUType log2(genIUType const & x);
genIUType log2(genIUType x);
//! Returns the floor log2 of x.
//! From GLM_GTX_integer extension.