diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2023-10-11 10:33:07 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2023-10-11 10:33:07 +0200 |
commit | 67a2d708dc4b29da8ae0bf039e25081e87c8d55a (patch) | |
tree | 05e7cb34317e0a2d0ce8a09eb147e0a705b60147 /test | |
parent | 351932d93aab921bf30fa1d1add4eb6bb3272fb6 (diff) |
cmake: kill -Wfloat-equal
It crashes clang 16.
Diffstat (limited to 'test')
-rw-r--r-- | test/magnum-math.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/test/magnum-math.cpp b/test/magnum-math.cpp index d9dc7bb6..a9b7e98d 100644 --- a/test/magnum-math.cpp +++ b/test/magnum-math.cpp @@ -6,11 +6,6 @@ #include <Magnum/Math/Vector3.h> #include <Magnum/Math/Vector4.h> -#ifdef __GNUG__ -# pragma GCC diagnostic push -# pragma GCC diagnostic ignored "-Wfloat-equal" -#endif - namespace floormat { using Magnum::Math::Vector; @@ -68,7 +63,3 @@ void test_app::test_magnum_math() } } // namespace floormat - -#ifdef __GNUG__ -# pragma GCC diagnostic pop -#endif |