From d39749d1d6c59c77f2fd266d70bbfbcbf9123644 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Thu, 24 Nov 2016 21:12:37 +0100 Subject: [PATCH] Fixed GLM test warning --- test/core/core_func_integer_bit_count.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/core/core_func_integer_bit_count.cpp b/test/core/core_func_integer_bit_count.cpp index f8cba2c0..0cd7431b 100644 --- a/test/core/core_func_integer_bit_count.cpp +++ b/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(sizeof(test)/8)); # endif//NDEBUG }