bump product version to 7.2.5.1
[LibreOffice.git] / external / glm / c++20.patch.0
blob34a40b5ef4c6ccac30811a9be1c4f52755c2b516
1 --- glm/detail/type_half.inl
2 +++ glm/detail/type_half.inl
3 @@ -6,7 +6,7 @@
4                 volatile float f = 1e10;
5  
6                 for(int i = 0; i < 10; ++i)
7 -                       f *= f; // this will overflow before the for loop terminates
8 +                       f = f * f; // this will overflow before the for loop terminates
9                 return f;
10         }