MCPcopy Create free account
hub / github.com/fmtlib/fmt / make_printf_args

Function make_printf_args

include/fmt/printf.h:572–575  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

570/// arguments and can be implicitly converted to `printf_args`.
571template <typename Char = char, typename... T>
572inline auto make_printf_args(T&... args)
573 -> decltype(fmt::make_format_args<basic_printf_context<Char>>(args...)) {
574 return fmt::make_format_args<basic_printf_context<Char>>(args...);
575}
576
577template <typename Char> struct vprintf_args {
578 using type = basic_format_args<basic_printf_context<Char>>;

Callers 4

TESTFunction · 0.85
sprintfFunction · 0.85
fprintfFunction · 0.85
printfFunction · 0.85

Calls

no outgoing calls

Tested by 1

TESTFunction · 0.68