From 6ca25dbaebbaee640bfff6eddf16050c5dd710f3 Mon Sep 17 00:00:00 2001 From: Baardi Date: Wed, 28 Feb 2024 16:47:13 +0100 Subject: [PATCH] Fix warning C4702 emitted from format.h (MSVC) (#3866) --- include/fmt/format.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/fmt/format.h b/include/fmt/format.h index c3f260f8e376..dcf71671eba6 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -2218,7 +2218,6 @@ FMT_CONSTEXPR FMT_INLINE auto write_int(OutputIt out, write_int_arg arg, case presentation_type::chr: return write_char(out, static_cast(abs_value), specs); } - return out; } template FMT_CONSTEXPR FMT_NOINLINE auto write_int_noinline(OutputIt out,