From d49148564a462d3dd78a81f0079b850a95ec6b52 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Sat, 7 May 2011 23:36:03 +0100 Subject: [PATCH] Fixed cast warninf --- glm/gtx/ulp.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glm/gtx/ulp.inl b/glm/gtx/ulp.inl index 872b858d..488b9c26 100644 --- a/glm/gtx/ulp.inl +++ b/glm/gtx/ulp.inl @@ -261,7 +261,7 @@ namespace ulp template GLM_FUNC_QUALIFIER uint float_distance(T const & x, T const & y) { - std::size_t ulp = 0; + uint ulp = 0; if(x < y) {