From f20b16617e0f2b7587d34ab368f1d3ba5777dece Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sat, 22 Nov 2025 13:48:03 -0800 Subject: [PATCH] Fix formatting --- include/fmt/format.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/fmt/format.h b/include/fmt/format.h index 0f38f30e..e948c78e 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -493,8 +493,8 @@ template = 307 && !FMT_ICC_VERSION __attribute__((no_sanitize("undefined"))) #endif -FMT_CONSTEXPR20 inline auto reserve(OutputIt it, size_t n) -> - typename OutputIt::value_type* { +FMT_CONSTEXPR20 inline auto +reserve(OutputIt it, size_t n) -> typename OutputIt::value_type* { auto& c = get_container(it); size_t size = c.size(); c.resize(size + n);