Don't pass locale_ref into arg_formatter constructor in printf_arg_formatter
This commit is contained in:
parent
ed37406f95
commit
6cfc4c5310
@ -235,7 +235,7 @@ class printf_arg_formatter : public arg_formatter<Char> {
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
printf_arg_formatter(OutputIt iter, format_specs<Char>& s, context_type& ctx)
|
printf_arg_formatter(OutputIt iter, format_specs<Char>& s, context_type& ctx)
|
||||||
: base{iter, s, locale_ref()}, context_(ctx) {}
|
: base{iter, s}, context_(ctx) {}
|
||||||
|
|
||||||
OutputIt operator()(monostate value) { return base::operator()(value); }
|
OutputIt operator()(monostate value) { return base::operator()(value); }
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user