From a86cac87059bd1f77f7e52ad9188dfa345c71e9c Mon Sep 17 00:00:00 2001 From: Chip Hogg Date: Wed, 29 Dec 2021 20:53:55 -0500 Subject: [PATCH] Capitalize more template arguments --- src/core/include/units/magnitude.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/core/include/units/magnitude.h b/src/core/include/units/magnitude.h index 38ded5e1..1e414485 100644 --- a/src/core/include/units/magnitude.h +++ b/src/core/include/units/magnitude.h @@ -54,10 +54,10 @@ inline constexpr bool is_magnitude_v = is_magnitude::value; template concept Magnitude = is_magnitude_v; -template -struct int_base : std::integral_constant {}; -template -using int_base_power = base_power, ratio{num, den}>; +template +struct int_base : std::integral_constant {}; +template +using int_base_power = base_power, ratio{num, den}>; template struct inverse; @@ -74,10 +74,10 @@ using quotient_t = product_t>; namespace detail { -template +template struct prime_factorization; -template -using prime_factorization_t = typename prime_factorization::type; +template +using prime_factorization_t = typename prime_factorization::type; } // namespace detail template