Skip to content

Commit

Permalink
fix: Fix compile error on fabsf
Browse files Browse the repository at this point in the history
  • Loading branch information
kbinani committed Dec 7, 2024
1 parent 9415640 commit 24e05ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/j2b2j.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -621,7 +621,7 @@ static void CheckRotationJ(ListTag const &e, ListTag const &a) {
auto av = a.at(i)->asFloat();
REQUIRE(ev);
REQUIRE(av);
float diff = std::fabsf(ev->fValue - av->fValue);
float diff = fabsf(ev->fValue - av->fValue);
CHECK(diff < 0.01f);
}
}
Expand Down

0 comments on commit 24e05ac

Please sign in to comment.