Skip to content

Commit

Permalink
style: clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
mpusz committed Jun 25, 2024
1 parent 8ebb470 commit 6444191
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/core/include/mp-units/framework/quantity_spec_concepts.h
Original file line number Diff line number Diff line change
Expand Up @@ -151,9 +151,8 @@ concept QuantitySpecExplicitlyConvertibleTo =
explicitly_convertible(From, To);

template<auto From, auto To>
concept QuantitySpecCastableTo =
QuantitySpec<MP_UNITS_REMOVE_CONST(decltype(From))> && QuantitySpec<MP_UNITS_REMOVE_CONST(decltype(To))> &&
castable(From, To);
concept QuantitySpecCastableTo = QuantitySpec<MP_UNITS_REMOVE_CONST(decltype(From))> &&
QuantitySpec<MP_UNITS_REMOVE_CONST(decltype(To))> && castable(From, To);

} // namespace detail

Expand Down

0 comments on commit 6444191

Please sign in to comment.