From 906eaf2ddb0f598d48055187558dc4780ca23c00 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Fri, 25 Apr 2025 12:10:21 -0700 Subject: [PATCH] Make specifier order consistent --- include/fmt/format.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fmt/format.h b/include/fmt/format.h index 81c97a07..2596e3a8 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -1613,7 +1613,7 @@ constexpr auto convert_float(T value) -> convert_float_result { } template -FMT_NOINLINE FMT_CONSTEXPR auto fill(OutputIt it, size_t n, +FMT_CONSTEXPR FMT_NOINLINE auto fill(OutputIt it, size_t n, const basic_specs& specs) -> OutputIt { auto fill_size = specs.fill_size(); if (fill_size == 1) return detail::fill_n(it, n, specs.fill_unit());