Browse Source

Fixed GLM test warning

Christophe Riccio 9 years ago
parent
commit
3cdb61c4a0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/core/core_func_integer_find_lsb.cpp

+ 1 - 1
test/core/core_func_integer_find_lsb.cpp

@@ -392,7 +392,7 @@ int main()
 	printf("ntz10: %d clocks\n", static_cast<int>(TimestampEnd - TimestampBeg));
 	printf("ntz10: %d clocks\n", static_cast<int>(TimestampEnd - TimestampBeg));
 
 
 	if (errors == 0)
 	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
 #	endif//NDEBUG
 }
 }