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 had to add Added fmt::make_printf_args to fmt/printf.h so I could pass arguments to fmt::vsprintf, as in
Added fmt::make_printf_args
fmt/printf.h
fmt::vsprintf
fmt::vsprintf(format, fmt::make_printf_args(std::forward<Args>(args)...));
This is my implementation of it:
template <typename ...Args> inline arg_store<printf_context<internal::buffer>::type, Args...> make_printf_args(const Args & ... args) { return arg_store<printf_context<internal::buffer>::type, Args...>(args...); }
The text was updated successfully, but these errors were encountered:
Could you submit a PR?
Sorry, something went wrong.
Add make_printf_args
f7ad18e
Fixes fmtlib#687
7a41d61
Fixes #687
No branches or pull requests
I had to add
Added fmt::make_printf_args
tofmt/printf.h
so I could pass arguments tofmt::vsprintf
, as infmt::vsprintf(format, fmt::make_printf_args(std::forward<Args>(args)...));
This is my implementation of it:
The text was updated successfully, but these errors were encountered: