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
Hi, Is example like:
#include <fmt/format.h> int main() { using namespace fmt::literals; fmt::print("{abc} {1}", "abc"_a = 42, "abc"_a = 43 ); }
This prints: "42 43"
Or this example:
#include <fmt/format.h> int main() { using namespace fmt::literals; fmt::print("{abc}", "abc"_a = 42, "abc"_a = 43 ); }
This prints: "42"
Is this semantics like this by design or did it happen by mistake?
The text was updated successfully, but these errors were encountered:
That's just an implementation artifact and I think we could add validation.
Sorry, something went wrong.
No branches or pull requests
Hi,
Is example like:
This prints: "42 43"
Or this example:
This prints: "42"
Is this semantics like this by design or did it happen by mistake?
The text was updated successfully, but these errors were encountered: