Merge pull request #1024 from bjornwah/fix_compiler_warnings

Fix compiler warnings #1024
master
Christophe ago%!(EXTRA string=5 years) committed by GitHub
commit 72022c2cf7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      glm/detail/type_half.inl

@ -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…
Cancel
Save