From fa5419b7920ef0bf90f564b58bcb4a350a55581e Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Wed, 4 Oct 2023 10:14:57 -0600 Subject: [PATCH] fix: unused parametrs identifiers removed --- src/core/include/mp-units/quantity_spec.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/include/mp-units/quantity_spec.h b/src/core/include/mp-units/quantity_spec.h index 22cc47bb..ef224b9e 100644 --- a/src/core/include/mp-units/quantity_spec.h +++ b/src/core/include/mp-units/quantity_spec.h @@ -887,7 +887,7 @@ extract_results(bool, From = {}, To = {}, prepend_rest = {}, Elem = {}) -> extra #endif template -[[nodiscard]] consteval auto extract_convertible_quantities(From from, To to) +[[nodiscard]] consteval auto extract_convertible_quantities(From, To) { constexpr auto qfrom = map_power(From{}); constexpr auto qto = map_power(To{});