diff --git a/include/fmt/core.h b/include/fmt/core.h index 6aa45877..5aef6c14 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -31,7 +31,6 @@ #include #include #include -#include #include #include #include @@ -274,9 +273,8 @@ struct convert_to_int_impl2 { template struct convert_to_int_impl2 { enum { - // Don't convert numeric types. - value = convert_to_int_impl< - T, !std::numeric_limits::is_specialized>::value + // Don't convert arithmetic types. + value = convert_to_int_impl::value>::value }; };