From 644419164f387d44fe4d360202f560c214cd1781 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Tue, 25 Jun 2024 14:33:38 -0500 Subject: [PATCH] style: clang-format --- src/core/include/mp-units/framework/quantity_spec_concepts.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/core/include/mp-units/framework/quantity_spec_concepts.h b/src/core/include/mp-units/framework/quantity_spec_concepts.h index 17aaeb87..f782797b 100644 --- a/src/core/include/mp-units/framework/quantity_spec_concepts.h +++ b/src/core/include/mp-units/framework/quantity_spec_concepts.h @@ -151,9 +151,8 @@ concept QuantitySpecExplicitlyConvertibleTo = explicitly_convertible(From, To); template -concept QuantitySpecCastableTo = - QuantitySpec && QuantitySpec && - castable(From, To); +concept QuantitySpecCastableTo = QuantitySpec && + QuantitySpec && castable(From, To); } // namespace detail