summaryrefslogtreecommitdiffstats
path: root/external/glm/c++20.patch.0
diff options
context:
space:
mode:
Diffstat (limited to 'external/glm/c++20.patch.0')
-rw-r--r--external/glm/c++20.patch.016
1 files changed, 8 insertions, 8 deletions
diff --git a/external/glm/c++20.patch.0 b/external/glm/c++20.patch.0
index 34a40b5ef4c6..9fdd813a1e53 100644
--- a/external/glm/c++20.patch.0
+++ b/external/glm/c++20.patch.0
@@ -1,11 +1,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;
- }
-
+ 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;
+ }
+