diff --git a/include/fmt/core.h b/include/fmt/core.h index 1e0e9e81..27143856 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -1483,18 +1483,6 @@ template struct arg_mapper { return values; } -#ifdef FMT_DEPRECATED_IMPLICIT_ENUMS - template ::value&& std::is_convertible::value && - !has_format_as::value && !has_formatter::value && - !has_fallback_formatter::value)> - FMT_DEPRECATED FMT_CONSTEXPR FMT_INLINE auto map(const T& val) - -> decltype(this->map(static_cast>(val))) { - return map(static_cast>(val)); - } -#endif - // Only map owning types because mapping views can be unsafe. template , FMT_ENABLE_IF(std::is_arithmetic::value)>