fix: numerical_value_ref_in name fixed for this deduction in quantity

This commit is contained in:
Mateusz Pusz
2023-09-11 19:36:06 +02:00
parent 3b2ca4084a
commit 40c809091d

View File

@@ -145,7 +145,7 @@ public:
#ifdef __cpp_explicit_this_parameter #ifdef __cpp_explicit_this_parameter
template<typename Self, Unit U> template<typename Self, Unit U>
requires(U{} == unit) requires(U{} == unit)
[[nodiscard]] constexpr auto&& value_ref_in(this Self&& self, U) noexcept [[nodiscard]] constexpr auto&& numerical_value_ref_in(this Self&& self, U) noexcept
{ {
return std::forward<Self>(self).value_; return std::forward<Self>(self).value_;
} }