StringUtil: Purge StdStringFromFormat()

This commit is contained in:
Stenzek
2024-07-19 14:01:04 +10:00
parent 567b86ce79
commit 24ef76bfee
2 changed files with 0 additions and 38 deletions

View File

@ -4,7 +4,6 @@
#pragma once
#include "types.h"
#include <charconv>
#include <cstdarg>
#include <cstddef>
#include <cstring>
#include <iomanip>
@ -27,10 +26,6 @@
namespace StringUtil {
/// Constructs a std::string from a format string.
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.
bool WildcardMatch(const char* subject, const char* mask, bool case_sensitive = true);