From fb7c097ea0c59f460bd103ecbddd2e1da4b7d1bc Mon Sep 17 00:00:00 2001 From: Brian Date: Sat, 23 Feb 2019 12:24:06 -0500 Subject: [PATCH] Fix order of initializers --- include/format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/format b/include/format index 27dadbec..106b56fd 100644 --- a/include/format +++ b/include/format @@ -209,7 +209,7 @@ namespace std { // Implementation details: using format_arg = basic_format_arg; basic_format_context(O out, basic_format_args args, fmt::internal::locale_ref) - : out_(out), args_(args) {} + : args_(args), out_(out) {} fmt::internal::error_handler error_handler() const { return {}; } basic_format_arg arg(fmt::basic_string_view) const { return {}; // unused: named arguments are not supported yet