From 3cdb61c4a0960dd97e3273e463c4a44f388acd6c Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Thu, 24 Nov 2016 21:16:43 +0100 Subject: [PATCH] Fixed GLM test warning --- test/core/core_func_integer_find_lsb.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/core/core_func_integer_find_lsb.cpp b/test/core/core_func_integer_find_lsb.cpp index 9dd3bd6b..ddabdf2a 100644 --- a/test/core/core_func_integer_find_lsb.cpp +++ b/test/core/core_func_integer_find_lsb.cpp @@ -392,7 +392,7 @@ int main() printf("ntz10: %d clocks\n", static_cast(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 }