Constructors
Declared in <tinyformat.h>
Build from an already-validated consteval format string.
FormatStringCheck(util::ConstevalFormatString<num_params> str);
» more...
Build from a runtime-wrapped format string, skipping compile-time checks.
FormatStringCheck(RuntimeFormat const& run);
» more...
Build from a string literal, checking it against num_params at compile time.
consteval
FormatStringCheck(char const* str);
» more...
| Name | Description |
|---|---|
| str | Validated format string. |
| run | Runtime format string wrapper. |