prefix_family in prefixed_alias_unit fixed

This commit is contained in:
Mateusz Pusz
2020-05-08 21:16:50 +02:00
parent 68405ef7f6
commit 31e76f03c1

View File

@@ -183,7 +183,7 @@ template<Unit U, Prefix P, Unit AU>
struct prefixed_alias_unit : U { struct prefixed_alias_unit : U {
static constexpr bool is_named = true; static constexpr bool is_named = true;
static constexpr auto symbol = P::symbol + AU::symbol; static constexpr auto symbol = P::symbol + AU::symbol;
using prefix_family = AU::prefix_family; using prefix_family = no_prefix;
}; };
} // namespace units } // namespace units