From e94df6e895fb624d9bf4622e273b31c46bb2b104 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Sat, 28 Dec 2024 22:23:38 +0100 Subject: [PATCH] fix: unused `convertible_kinds()` argument removed --- src/core/include/mp-units/framework/quantity_spec.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/include/mp-units/framework/quantity_spec.h b/src/core/include/mp-units/framework/quantity_spec.h index 4fc1da9a..4cf65f86 100644 --- a/src/core/include/mp-units/framework/quantity_spec.h +++ b/src/core/include/mp-units/framework/quantity_spec.h @@ -1031,7 +1031,7 @@ template } template -[[nodiscard]] consteval specs_convertible_result convertible_kinds(From from, To to) +[[nodiscard]] consteval specs_convertible_result convertible_kinds(From from, To) { constexpr auto from_root = detail::get_kind_tree_root(From{}); constexpr auto to_root = detail::get_kind_tree_root(To{});