From bd1def8b413288372127f28c9d7a773ceb78f62d Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Thu, 2 Apr 2026 10:35:49 +0100 Subject: [PATCH] Used the correct macro for 'if constexpr' --- include/etl/format.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/etl/format.h b/include/etl/format.h index b04f2ee5..80866178 100644 --- a/include/etl/format.h +++ b/include/etl/format.h @@ -1021,7 +1021,7 @@ namespace etl unsigned_value %= highest_digit; format_digit_char(it, digit, spec); - if ETL_CONSTEXPR17 (skip_last_zeros) + if ETL_IF_CONSTEXPR(skip_last_zeros) { if (unsigned_value == 0) {