diff options
author | callum_linden <none@none> | 2014-12-12 11:03:56 -0800 |
---|---|---|
committer | callum_linden <none@none> | 2014-12-12 11:03:56 -0800 |
commit | 4c597c548ff3504a3e957880b275f2c7e8652a1d (patch) | |
tree | fd099588fc1221eebec32b5ce3dc4df0272ce841 /indra/llmath/tests/mathmisc_test.cpp | |
parent | ea5c8563351233105e1c9536353f0d6e6a4a3bf7 (diff) |
Fix up remaining llround() -> ll_round() issues
Diffstat (limited to 'indra/llmath/tests/mathmisc_test.cpp')
-rwxr-xr-x | indra/llmath/tests/mathmisc_test.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/llmath/tests/mathmisc_test.cpp b/indra/llmath/tests/mathmisc_test.cpp index b5998f7a82..f12140cf8f 100755 --- a/indra/llmath/tests/mathmisc_test.cpp +++ b/indra/llmath/tests/mathmisc_test.cpp @@ -128,11 +128,11 @@ namespace tut void math_object::test<8>() { F32 val = 430903.2f; - S32 val1 = llround(val); - ensure("float llround value 1", (430903 == val1)); + S32 val1 = ll_round(val); + ensure("float ll_round value 1", (430903 == val1)); val = -430903.9f; - val1 = llround(val); - ensure("float llround value 2", (-430904 == val1)); + val1 = ll_round(val); + ensure("float ll_round value 2", (-430904 == val1)); } template<> template<> |