From ca4dbfa9b673d74ee1a783305b97a38ba139e572 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Fri, 8 Nov 2024 13:39:16 +0100 Subject: [PATCH] fix: extraneous semicolon removed --- src/core/include/mp-units/framework/representation_concepts.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/core/include/mp-units/framework/representation_concepts.h b/src/core/include/mp-units/framework/representation_concepts.h index 2edfad8e..4ddbcb88 100644 --- a/src/core/include/mp-units/framework/representation_concepts.h +++ b/src/core/include/mp-units/framework/representation_concepts.h @@ -83,7 +83,6 @@ template concept IsOfCharacter = (Ch == quantity_character::scalar && is_scalar) || (Ch == quantity_character::complex && is_complex) || (Ch == quantity_character::vector && is_vector) || (Ch == quantity_character::tensor && is_tensor); -; template using scaling_factor_type_t = conditional, long double, std::intmax_t>;