Browse Source

Fixed GLM test warning

Christophe Riccio 9 years ago
parent
commit
d39749d1d6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/core/core_func_integer_bit_count.cpp

+ 1 - 1
test/core/core_func_integer_bit_count.cpp

@@ -285,7 +285,7 @@ int main()
 	printf("pop9: %ld clocks\n", TimestampEnd - TimestampBeg);
 
 	if (errors == 0)
-		printf("Passed all %d cases.\n", sizeof(test)/8);
+		printf("Passed all %d cases.\n", static_cast<int>(sizeof(test)/8));
 
 #	endif//NDEBUG
 }