diff --git a/include/fmt/printf.h b/include/fmt/printf.h index a2fa945d..b8496b1c 100644 --- a/include/fmt/printf.h +++ b/include/fmt/printf.h @@ -46,7 +46,6 @@ class printf_precision_handler { template ::value)> int operator()(T) { FMT_THROW(format_error("precision is not integer")); - return 0; } }; @@ -167,7 +166,6 @@ template class printf_width_handler { template ::value)> unsigned operator()(T) { FMT_THROW(format_error("width is not integer")); - return 0; } };