From 64d34c53fbcd08485c5a7f0dee8e1f4e005519aa Mon Sep 17 00:00:00 2001 From: Ivan Shynkarenka Date: Wed, 20 Jan 2021 01:26:09 +0300 Subject: [PATCH] Fixed format.h(1416): warning C4702: unreachable code --- 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 5fec51ac..65454081 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -1412,9 +1412,9 @@ FMT_CONSTEXPR void handle_int_type_spec(char spec, Handler&& handler) { break; #ifdef FMT_DEPRECATED_N_SPECIFIER case 'n': -#endif handler.on_num(); break; +#endif case 'c': handler.on_chr(); break;