Fix order of initializers
This commit is contained in:
parent
187bd1b8b2
commit
fb7c097ea0
@ -209,7 +209,7 @@ namespace std {
|
|||||||
// Implementation details:
|
// Implementation details:
|
||||||
using format_arg = basic_format_arg<basic_format_context>;
|
using format_arg = basic_format_arg<basic_format_context>;
|
||||||
basic_format_context(O out, basic_format_args<basic_format_context> args, fmt::internal::locale_ref)
|
basic_format_context(O out, basic_format_args<basic_format_context> args, fmt::internal::locale_ref)
|
||||||
: out_(out), args_(args) {}
|
: args_(args), out_(out) {}
|
||||||
fmt::internal::error_handler error_handler() const { return {}; }
|
fmt::internal::error_handler error_handler() const { return {}; }
|
||||||
basic_format_arg<basic_format_context> arg(fmt::basic_string_view<charT>) const {
|
basic_format_arg<basic_format_context> arg(fmt::basic_string_view<charT>) const {
|
||||||
return {}; // unused: named arguments are not supported yet
|
return {}; // unused: named arguments are not supported yet
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user