Fixed non-utf8 character #196

This commit is contained in:
Christophe Riccio
2014-05-04 16:34:46 +02:00
parent 6c22a0b82f
commit e5ee35323a
2 changed files with 6 additions and 2 deletions

View File

@@ -38,8 +38,7 @@ namespace detail
volatile float f = 1e10;
for(int i = 0; i < 10; ++i)
f *= f; // this will overflow before
// the for<6F>loop terminates
f *= f; // this will overflow before the for loop terminates
return f;
}