We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
vformat_to
Overload for char:
char
template <typename OutputIt, typename Locale> auto vformat_to(const Locale& loc, OutputIt out, string_view fmt, format_args args)
Overload for Char ≠ char:
Char
template <typename Locale, typename S, typename OutputIt, typename... Args, typename Char = char_t<S>> inline OutputIt vformat_to( OutputIt out, const Locale& loc, const S& format_str, basic_format_args<buffer_context<type_identity_t<Char>>> args);
Is this intended? All other localized API overloads take the locale as their first parameter.
The text was updated successfully, but these errors were encountered:
Good catch, thanks. This is not intended and in both cases the output iterator should go first (https://en.cppreference.com/w/cpp/utility/format/vformat_to).
Sorry, something went wrong.
Fix argument order in locale overload of vformat_to (#2327)
832ec09
Fixed in 832ec09.
Swap parameter order to match fmtlib#2327
831e9d3
Swap parameter order to match #2327 (#2329)
ba4c7f1
No branches or pull requests
Overload for
char
:Overload for
Char
≠char
:Is this intended? All other localized API overloads take the locale as their first parameter.
The text was updated successfully, but these errors were encountered: