diff options
| author | Nat Goodspeed <nat@lindenlab.com> | 2014-12-12 08:54:34 -0800 | 
|---|---|---|
| committer | Nat Goodspeed <nat@lindenlab.com> | 2014-12-12 08:54:34 -0800 | 
| commit | ddf0f7a915941aa6679e4192bcd38033706c57ea (patch) | |
| tree | 5a3b03806c12c73a953c86a5e64dfe721eec0899 /indra/llmath/tests | |
| parent | 711e3b6e4e7717589fb71a4b5ee92a17e9424e69 (diff) | |
Another round of ll_round()
Diffstat (limited to 'indra/llmath/tests')
| -rwxr-xr-x | indra/llmath/tests/mathmisc_test.cpp | 16 | 
1 files changed, 8 insertions, 8 deletions
| diff --git a/indra/llmath/tests/mathmisc_test.cpp b/indra/llmath/tests/mathmisc_test.cpp index 91a2e6c009..b5998f7a82 100755 --- a/indra/llmath/tests/mathmisc_test.cpp +++ b/indra/llmath/tests/mathmisc_test.cpp @@ -139,22 +139,22 @@ namespace tut  	void math_object::test<9>()  	{  		F32 val = 430905.2654f, nearest = 100.f; -		val = llround(val, nearest); -		ensure("float llround value 1", (430900 == val)); +		val = ll_round(val, nearest); +		ensure("float ll_round value 1", (430900 == val));  		val = -430905.2654f, nearest = 10.f; -		val = llround(val, nearest); -		ensure("float llround value 1", (-430910 == val)); +		val = ll_round(val, nearest); +		ensure("float ll_round value 1", (-430910 == val));  	}  	template<> template<>  	void math_object::test<10>()  	{  		F64 val = 430905.2654, nearest = 100.0; -		val = llround(val, nearest); -		ensure("double llround value 1", (430900 == val)); +		val = ll_round(val, nearest); +		ensure("double ll_round value 1", (430900 == val));  		val = -430905.2654, nearest = 10.0; -		val = llround(val, nearest); -		ensure("double llround value 1", (-430910.00000 == val)); +		val = ll_round(val, nearest); +		ensure("double ll_round value 1", (-430910.00000 == val));  	}  	template<> template<> | 
