xo-unit: removed unit_concept from dimension_concept.hpp

This commit is contained in:
Roland Conybeare 2024-04-05 01:38:09 -04:00
commit 8fb3b11e00

View file

@ -70,18 +70,6 @@ namespace xo {
&& bpu_list_concept<typename Dimension::canon_type>
);
// ----------------------------------------------------------------
template <typename Unit>
concept unit_concept = requires(Unit unit)
{
typename Unit::scalefactor_type;
typename Unit::dim_type;
typename Unit::canon_type;
}
&& (ratio_concept<typename Unit::scalefactor_type>
&& bpu_list_concept<typename Unit::dim_type>
&& bpu_list_concept<typename Unit::canon_type>);
} /*namespace unit*/
} /*namespace xo*/