refactor(unit test): it seems that explicit operator* for LA usage is no longer needed

This commit is contained in:
Mateusz Pusz
2023-06-12 12:01:34 +03:00
parent 2b2f381ad5
commit c8c865ec39

View File

@@ -38,12 +38,6 @@ using vector = STD_LA::fixed_size_column_vector<Rep, 3>;
template<typename Rep>
inline constexpr bool mp_units::is_vector<vector<Rep>> = true;
template<typename Rep, mp_units::Reference R>
[[nodiscard]] constexpr mp_units::quantity<R{}, vector<Rep>> operator*(const vector<Rep>& lhs, R)
{
return mp_units::make_quantity<R{}>(lhs);
}
namespace STD_LA {
template<typename Rep>