blob: 9fdd813a1e530014619c7ffcc3e8a18bc55f045e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
--- glm/detail/type_half.inl
+++ glm/detail/type_half.inl
@@ -6,7 +6,7 @@
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;
}
|