refactor: unknown_coherent_unit moved to the end of a unit.h

This commit is contained in:
Mateusz Pusz
2020-09-07 11:12:58 +02:00
parent 00cb2cd6c3
commit 0180b34c84

View File

@@ -79,13 +79,6 @@ struct unit : downcast_child<Child, scaled_unit<ratio(1), Child>> {
using prefix_family = no_prefix; using prefix_family = no_prefix;
}; };
/**
* @brief Unknown unit
*
* Used as a coherent unit of an unknown dimension.
*/
struct unknown_coherent_unit : unit<unknown_coherent_unit> {};
/** /**
* @brief A named unit * @brief A named unit
* *
@@ -259,4 +252,11 @@ struct prefixed_alias_unit : U {
using prefix_family = no_prefix; using prefix_family = no_prefix;
}; };
/**
* @brief Unknown unit
*
* Used as a coherent unit of an unknown dimension.
*/
struct unknown_coherent_unit : unit<unknown_coherent_unit> {};
} // namespace units } // namespace units