Browse Source

Fixed ULP declaration

Christophe Riccio 14 years ago
parent
commit
1dd9532605
1 changed files with 1 additions and 1 deletions
  1. 1 1
      glm/gtx/ulp.hpp

+ 1 - 1
glm/gtx/ulp.hpp

@@ -32,7 +32,7 @@ namespace glm
 		//! Return the number of ULP between 2 variables.
 		//! From GLM_GTX_ulp extension.
 		template <typename genType>
-		genIType ulp(
+        std::size_t ulp(
 			genType const & a,
 			genType const & b);