From d7927f9f06c937b3fbb0a498de31995aa5af3129 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A5rd=20Sigurd=20M=C3=B8ller?= Date: Sat, 24 Feb 2024 17:05:02 +0100 Subject: [PATCH] Fix warning C4702 emitted from format.h (MSVC) --- 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,