diff options
Diffstat (limited to 'indra/llcommon/tests')
| -rw-r--r-- | indra/llcommon/tests/llunits_test.cpp | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/indra/llcommon/tests/llunits_test.cpp b/indra/llcommon/tests/llunits_test.cpp index 2a941e8229..33e30f9688 100644 --- a/indra/llcommon/tests/llunits_test.cpp +++ b/indra/llcommon/tests/llunits_test.cpp @@ -33,9 +33,9 @@  namespace LLUnits  {  	// using powers of 2 to allow strict floating point equality -	struct Quatloos { typedef Quatloos base_unit_t; }; -	LL_DECLARE_DERIVED_UNIT(4, Quatloos, Latinum); -	LL_DECLARE_DERIVED_UNIT((1.0 / 4.0), Quatloos, Solari); +	LL_DECLARE_BASE_UNIT(Quatloos, "Quat"); +	LL_DECLARE_DERIVED_UNIT(4, Quatloos, Latinum, "Lat"); +	LL_DECLARE_DERIVED_UNIT((1.0 / 4.0), Quatloos, Solari, "Sol");  }  namespace tut | 
