Fix compiler warnings #1024
@ -6,7 +6,7 @@ namespace detail
volatile float f = 1e10;
for(int i = 0; i < 10; ++i)
f *= f; // this will overflow before the for loop terminates
f = f * f; // this will overflow before the for loop terminates
return f;
}