| 147 | } |
| 148 | |
| 149 | void Host::ReportFormattedErrorAsync(const std::string_view title, const char* format, ...) |
| 150 | { |
| 151 | std::va_list ap; |
| 152 | va_start(ap, format); |
| 153 | std::string message(StringUtil::StdStringFromFormatV(format, ap)); |
| 154 | va_end(ap); |
| 155 | ReportErrorAsync(title, message); |
| 156 | } |
| 157 | |
| 158 | std::string Host::GetHTTPUserAgent() |
| 159 | { |
nothing calls this directly
no test coverage detected