Add more printflike macros.

This commit is contained in:
C.W. Betts
2021-03-29 13:56:19 -06:00
parent a6617e6297
commit fb7a8886f1
7 changed files with 24 additions and 23 deletions

View File

@ -21,7 +21,7 @@
namespace StringUtil {
/// Constructs a std::string from a format string.
std::string StdStringFromFormat(const char* format, ...);
std::string StdStringFromFormat(const char* format, ...) printflike(1, 2);
std::string StdStringFromFormatV(const char* format, std::va_list ap);
/// Checks if a wildcard matches a search string.