diff --git a/include/fmt/base.h b/include/fmt/base.h index fe73e37795aa..7b853b8cfcd9 100644 --- a/include/fmt/base.h +++ b/include/fmt/base.h @@ -1658,6 +1658,10 @@ FMT_CONSTEXPR inline auto check_char_specs(const format_specs& specs) -> bool { // A base class for compile-time strings. struct compile_string {}; +#if defined(_MSC_VER) +#pragma warning(push) +#pragma warning(disable : 4459) // declaration hides global declaration +#endif template FMT_VISIBILITY("hidden") // Suppress an ld warning on macOS (#3769). FMT_CONSTEXPR auto invoke_parse(parse_context& ctx) -> const Char* { @@ -1668,6 +1672,9 @@ FMT_CONSTEXPR auto invoke_parse(parse_context& ctx) -> const Char* { using formatted_type = conditional_t; return formatter().parse(ctx); } +#ifdef _MSC_VER +#pragma warning(pop) // Restore 4459 +#endif template struct arg_pack {};