diff --git a/include/fmt/core.h b/include/fmt/core.h index bcce2f50..2dc6ed55 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -132,6 +132,12 @@ # endif # endif #endif +// Workaround broken [[deprecated]] in the Intel compiler. +#ifdef __INTEL_COMPILER +# define FMT_DEPRECATED_ALIAS +#else +# define FMT_DEPRECATED_ALIAS FMT_DEPRECATED +#endif #ifndef FMT_BEGIN_NAMESPACE # if FMT_HAS_FEATURE(cxx_inline_namespaces) || FMT_GCC_VERSION >= 404 || \ @@ -474,8 +480,8 @@ class basic_parse_context : private ErrorHandler { using format_parse_context = basic_parse_context; using wformat_parse_context = basic_parse_context; -using parse_context FMT_DEPRECATED = basic_parse_context; -using wparse_context FMT_DEPRECATED = basic_parse_context; +using parse_context FMT_DEPRECATED_ALIAS = basic_parse_context; +using wparse_context FMT_DEPRECATED_ALIAS = basic_parse_context; template class basic_format_arg; template class basic_format_args; diff --git a/include/fmt/format.h b/include/fmt/format.h index 5d6be744..6762e6bc 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -2595,9 +2595,9 @@ void handle_dynamic_spec(Spec& value, arg_ref ref, } // namespace internal template -using basic_writer FMT_DEPRECATED = internal::basic_writer; -using writer FMT_DEPRECATED = internal::writer; -using wwriter FMT_DEPRECATED = +using basic_writer FMT_DEPRECATED_ALIAS = internal::basic_writer; +using writer FMT_DEPRECATED_ALIAS = internal::writer; +using wwriter FMT_DEPRECATED_ALIAS = internal::basic_writer>; /** The default argument formatter. */