mirror of
https://github.com/UberGames/rpgxEF.git
synced 2025-04-19 07:21:12 +00:00
fix linker error
This commit is contained in:
parent
0ba1ecbb31
commit
910c8330c5
1 changed files with 0 additions and 5 deletions
|
@ -18,9 +18,4 @@ float rsqrt(float number) {
|
|||
|
||||
TEST_CASE("math_rsqrt") {
|
||||
REQUIRE(common::rsqrt(4) == Approx(0.5f).epsilon(0.01));
|
||||
|
||||
for (auto i = 0; i < 100; i++) {
|
||||
const auto f = common::getRandom<float>();
|
||||
REQUIRE(common::rsqrt(f) == Approx(1.0f / sqrt(f)).epsilon(0.01));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue