From fcdf0c8dfa6bf2c0f0e08bd2dab2c8b14a55b500 Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Fri, 5 Apr 2024 01:39:08 -0400 Subject: [PATCH] xo-unit: bugfix:fix meter, kilometer units --- include/xo/unit/unit.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/xo/unit/unit.hpp b/include/xo/unit/unit.hpp index b8b8c1b9..56157c94 100644 --- a/include/xo/unit/unit.hpp +++ b/include/xo/unit/unit.hpp @@ -270,12 +270,12 @@ namespace xo { }; using meter = wrap_unit< std::ratio<1>, - bpu_node< bpu> > >; + bpu_node< bpu> > >; using kilometer = wrap_unit< std::ratio<1>, - bpu_node< bpu> > >; + bpu_node< bpu> > >; template <> struct scaled_native_unit_abbrev> { static constexpr auto value = stringliteral("km");