Fixed build.

This commit is contained in:
Бранимир Караџић
2024-11-19 21:17:42 -08:00
parent 004821227f
commit 98b36f44ca

View File

@@ -306,8 +306,8 @@ TEST_CASE("rcp", "[math][libm]")
{
STATIC_REQUIRE(1.0f == bx::rcp(1.0f) );
STATIC_REQUIRE(2.0f == bx::rcp(0.5f) );
STATIC_REQUIRE(bx::isInfinite(bx::rcp( 0.0f) ) );
STATIC_REQUIRE(bx::isInfinite(bx::rcp(-0.0f) ) );
REQUIRE(bx::isInfinite(bx::rcp( 0.0f) ) );
REQUIRE(bx::isInfinite(bx::rcp(-0.0f) ) );
}
TEST_CASE("rcpSafe", "[math][libm]")