diff options
author | Richard Linden <none@none> | 2013-07-24 11:24:41 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2013-07-24 11:24:41 -0700 |
commit | 7e7b9ddc32c1eac5f7269cce69f9321d3d17f577 (patch) | |
tree | 040d242e9b4520f939e5f383eafcbceb0efbdaf1 /indra/llcommon/tests | |
parent | e3a15ba441c67187489275d6e69438a6904db4bb (diff) |
BUILDFIX fixed llunits unit test to use new unit declaration syntax
Diffstat (limited to 'indra/llcommon/tests')
-rw-r--r-- | indra/llcommon/tests/llunits_test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llcommon/tests/llunits_test.cpp b/indra/llcommon/tests/llunits_test.cpp index 2074a4f4d9..e631f18ad4 100644 --- a/indra/llcommon/tests/llunits_test.cpp +++ b/indra/llcommon/tests/llunits_test.cpp @@ -34,8 +34,8 @@ namespace LLUnits { // using powers of 2 to allow strict floating point equality LL_DECLARE_BASE_UNIT(Quatloos, "Quat"); - LL_DECLARE_DERIVED_UNIT(Latinum, "Lat", Quatloos, * 4); - LL_DECLARE_DERIVED_UNIT(Solari, "Sol", Latinum, / 16); + LL_DECLARE_DERIVED_UNIT(Quatloos, * 4, Latinum, "Lat"); + LL_DECLARE_DERIVED_UNIT(Latinum, / 16, Solari, "Sol"); } namespace tut |