diff --git a/src/include/units/bits/dimension_op.h b/src/include/units/bits/dimension_op.h index 8b01b2cd..0405efae 100644 --- a/src/include/units/bits/dimension_op.h +++ b/src/include/units/bits/dimension_op.h @@ -68,10 +68,11 @@ inline constexpr bool equivalent_dim = detail::equivalent_dim_impl::valu * dimension. In such a case an `unknown_dimension` is created with a coherent unit of `unknown_unit` * and ratio<1>. * - * @tparam Es zero or more exponents of a derived dimension + * @tparam E the list of exponents of ingredient dimensions + * @tparam ERest the list of exponents of ingredient dimensions */ -template -struct unknown_dimension : derived_dimension, scaled_unit, unknown_unit>, Es...> { +template +struct unknown_dimension : derived_dimension, scaled_unit, unknown_unit>, E, ERest...> { using coherent_unit = scaled_unit, unknown_unit>; };