From d376f1943fce2e31093652eadeeaed1213a3e447 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Wed, 23 Aug 2023 02:44:06 -0400 Subject: [PATCH] Remove whitespace in `operator"" _a` Clang 18 warns about this whitespace. Resolves #3607 --- 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 9b4f7357..77873c7f 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -4428,7 +4428,7 @@ template constexpr auto operator""_a() { return detail::udl_arg(); } # else -constexpr auto operator"" _a(const char* s, size_t) -> detail::udl_arg { +constexpr auto operator""_a(const char* s, size_t) -> detail::udl_arg { return {s}; } # endif