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
I tested this with 7.0.1 (but couldn't see a fitting fix in 7.0.2):
The following line will produce the string "1.0-1.000000", but there is no named argument specified: auto expr = fmt::format("{namedArg}-{:f}", 1.0);
I expected an exception.
It correctly fails to compile when using fmt::format(FMT_STRING("{namedArg}-{:f}", 1.0));
The text was updated successfully, but these errors were encountered:
Report error on missing named argument (#1796)
21c8b5c
Fixed in 21c8b5c. Thanks for reporting!
Sorry, something went wrong.
0cc73eb
No branches or pull requests
I tested this with 7.0.1 (but couldn't see a fitting fix in 7.0.2):
The following line will produce the string "1.0-1.000000", but there is no named argument specified:
auto expr = fmt::format("{namedArg}-{:f}", 1.0);
I expected an exception.
It correctly fails to compile when using fmt::format(FMT_STRING("{namedArg}-{:f}", 1.0));
The text was updated successfully, but these errors were encountered: