| 138 | } |
| 139 | |
| 140 | void Host::ReportFormattedInfoAsync(const std::string_view title, const char* format, ...) |
| 141 | { |
| 142 | std::va_list ap; |
| 143 | va_start(ap, format); |
| 144 | std::string message(StringUtil::StdStringFromFormatV(format, ap)); |
| 145 | va_end(ap); |
| 146 | ReportInfoAsync(title, message); |
| 147 | } |
| 148 | |
| 149 | void Host::ReportFormattedErrorAsync(const std::string_view title, const char* format, ...) |
| 150 | { |
nothing calls this directly
no test coverage detected