Skip to content

Commit ae1e93d

Browse files
authored
Fix warning C4702 emitted from format.h (MSVC) (#3866)
1 parent f68f452 commit ae1e93d

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

include/fmt/format.h

-1
Original file line numberDiff line numberDiff line change
@@ -2218,7 +2218,6 @@ FMT_CONSTEXPR FMT_INLINE auto write_int(OutputIt out, write_int_arg<T> arg,
22182218
case presentation_type::chr:
22192219
return write_char<Char>(out, static_cast<Char>(abs_value), specs);
22202220
}
2221-
return out;
22222221
}
22232222
template <typename Char, typename OutputIt, typename T>
22242223
FMT_CONSTEXPR FMT_NOINLINE auto write_int_noinline(OutputIt out,

0 commit comments

Comments
 (0)