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
When formatting with locale, unable to compile with named args. only tested with msvc
fmt::format( locale, "{:Lf}", val ); // okay fmt::format( locale, "{val:Lf}", fmt::arg( "val", val ) ); // fails to compile, "error C2668: 'fmt::v8::vformat': ambiguous call to overloaded function"
fmt::format( locale, "{:Lf}", val );
fmt::format( locale, "{val:Lf}", fmt::arg( "val", val ) );
https://godbolt.org/z/rY7os6EvT
The text was updated successfully, but these errors were encountered:
Fixed in b908954. Thanks for reporting.
Sorry, something went wrong.
No branches or pull requests
When formatting with locale, unable to compile with named args. only tested with msvc
fmt::format( locale, "{:Lf}", val );
// okayfmt::format( locale, "{val:Lf}", fmt::arg( "val", val ) );
// fails to compile, "error C2668: 'fmt::v8::vformat': ambiguous call to overloaded function"https://godbolt.org/z/rY7os6EvT
The text was updated successfully, but these errors were encountered: