Files
ports/graphics/bgfx/files/patch-bx_tests_math__test.cpp
T
Yuri Victorovich 4de9a3fbf8 graphics/bgfx: update 1.126.8700-463 → 1.127.8725-465
Reported by:	portscout
2024-05-02 01:58:00 -07:00

12 lines
393 B
C++

--- bx/tests/math_test.cpp.orig 2024-01-03 18:10:08 UTC
+++ bx/tests/math_test.cpp
@@ -28,7 +28,7 @@ TEST_CASE("isFinite, isInfinite, isNan", "[math]")
#else
REQUIRE(::isnanf(u.f) == bx::isNan(u.f) );
REQUIRE(::finitef(u.f) == bx::isFinite(u.f) );
- REQUIRE(::isinff(u.f) == bx::isInfinite(u.f) );
+ REQUIRE(::isinf(u.f) == bx::isInfinite(u.f) );
#endif // BX_PLATFORM_OSX
}
}