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
char buf[100]; auto p = fmt::format_to(buf, "{}", std::vector<int> { 1, 2, 3 }); *p = 0; std::cout << buf << "\n"; // output nothing p = fmt::format_to(buf, "{}", 1); *p = 0; std::cout << buf << "\n"; // output "1"
seems formatter<RangeT,Char>::format hasn't updated iterator out out= format_to(out,...);
formatter<RangeT,Char>::format
out
out= format_to(out,...);
The text was updated successfully, but these errors were encountered:
Fixed in 2e526a6. Thanks for reporting.
Sorry, something went wrong.
No branches or pull requests
seems
formatter<RangeT,Char>::format
hasn't updated iteratorout
out= format_to(out,...);
The text was updated successfully, but these errors were encountered: