Fixed build. (#422)

This commit is contained in:
Branimir Karadžić
2026-09-03 01:41:39 +00:00
committed by GitHub
parent 2b9ef62e7a
commit d8a853795f
4 changed files with 130 additions and 123 deletions

View File

@@ -712,7 +712,7 @@ TEST_CASE("exp", "[math][libm]")
{
STATIC_REQUIRE( 1.0f == bx::exp(-0.0f) );
STATIC_REQUIRE( 0.0f == bx::exp(-bx::kFloatInfinity) );
STATIC_REQUIRE( 0.0f == bx::exp(bx::log(bx::kFloatSmallest) ) );
STATIC_REQUIRE(bx::exp(bx::log(bx::kFloatSmallest) ) <= bx::kFloatSmallest);
bx::WriterI* writer = bx::getNullOut();
bx::Error err;