MCPcopy Create free account
hub / github.com/c42f/tinyformat / FormatListN

Method FormatListN

tinyformat.h:964–967  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

962#ifdef TINYFORMAT_USE_VARIADIC_TEMPLATES
963 template<typename... Args>
964 FormatListN(const Args&... args)
965 : FormatList(&m_formatterStore[0], N),
966 m_formatterStore { FormatArg(args)... }
967 { static_assert(sizeof...(args) == N, "Number of args must be N"); }
968#else // C++98 version
969 void init(int) {}
970# define TINYFORMAT_MAKE_FORMATLIST_CONSTRUCTOR(n) \

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected