diff --git a/src/core/include/mp-units/quantity.h b/src/core/include/mp-units/quantity.h index e845dcce..097dd62a 100644 --- a/src/core/include/mp-units/quantity.h +++ b/src/core/include/mp-units/quantity.h @@ -68,9 +68,11 @@ concept InvocableQuantities = template concept CommonlyInvocableQuantities = - Quantity && Quantity && (Q1::quantity_spec.character == Q2::quantity_spec.character) && requires { - common_reference(Q1::reference, Q2::reference); - } && InvocableQuantities; + Quantity && Quantity && + // (Q1::quantity_spec.character == Q2::quantity_spec.character) && // TODO enable when vector quantities are handled + // correctly + requires { common_reference(Q1::reference, Q2::reference); } && + InvocableQuantities; template