Skip to content
Snippets Groups Projects
Commit 7e7b9ddc authored by Richard Linden's avatar Richard Linden
Browse files

BUILDFIX fixed llunits unit test to use new unit declaration syntax

parent e3a15ba4
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment