mirror of
https://github.com/g-truc/glm.git
synced 2025-04-06 14:05:01 +00:00
Merge pull request #1024 from bjornwah/fix_compiler_warnings
Fix compiler warnings #1024
This commit is contained in:
commit
72022c2cf7
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue