Commit 59f555ad authored by Victor Zverovich's avatar Victor Zverovich

Workaround more visit lookup issues on gcc

parent a7e356cc
...@@ -3231,8 +3231,8 @@ struct formatter< ...@@ -3231,8 +3231,8 @@ struct formatter<
specs_.precision_, specs_.precision_ref, ctx); specs_.precision_, specs_.precision_ref, ctx);
typedef output_range<typename FormatContext::iterator, typedef output_range<typename FormatContext::iterator,
typename FormatContext::char_type> range_type; typename FormatContext::char_type> range_type;
return visit(arg_formatter<range_type>(ctx, &specs_), return fmt::visit(arg_formatter<range_type>(ctx, &specs_),
internal::make_arg<FormatContext>(val)); internal::make_arg<FormatContext>(val));
} }
private: private:
...@@ -3292,8 +3292,8 @@ class dynamic_formatter { ...@@ -3292,8 +3292,8 @@ class dynamic_formatter {
checker.end_precision(); checker.end_precision();
typedef output_range<typename FormatContext::iterator, typedef output_range<typename FormatContext::iterator,
typename FormatContext::char_type> range; typename FormatContext::char_type> range;
visit(arg_formatter<range>(ctx, &specs_), fmt::visit(arg_formatter<range>(ctx, &specs_),
internal::make_arg<FormatContext>(val)); internal::make_arg<FormatContext>(val));
return ctx.out(); return ctx.out();
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment