diff --git a/src/core/include/units/bits/basic_concepts.h b/src/core/include/units/bits/basic_concepts.h index 4ec56115..94425df1 100644 --- a/src/core/include/units/bits/basic_concepts.h +++ b/src/core/include/units/bits/basic_concepts.h @@ -269,7 +269,7 @@ concept Reference = detail::is_reference; namespace detail { template -inline constexpr bool is_quantity = false; +inline constexpr bool is_quantity = requires { typename T::dimension; typename T::unit; typename T::rep;}; template inline constexpr bool is_quantity_point = false;