Remove obsolete msvc workarounds (#3388)

This bug in the modules implementation is fixed since at least msvc 19.34, possibly even earlier like 19.32.
This commit is contained in:
Daniela Engert
2023-04-19 17:09:51 -07:00
committed by GitHub
parent 0489c19dcb
commit 18e7a2532b
2 changed files with 0 additions and 15 deletions
-3
View File
@@ -2496,9 +2496,6 @@ FMT_CONSTEXPR auto parse_replacement_field(const Char* begin, const Char* end,
template <bool IS_CONSTEXPR, typename Char, typename Handler>
FMT_CONSTEXPR FMT_INLINE void parse_format_string(
basic_string_view<Char> format_str, Handler&& handler) {
// Workaround a name-lookup bug in MSVC's modules implementation.
using detail::find;
auto begin = format_str.data();
auto end = begin + format_str.size();
if (end - begin < 32) {