Shortcut version to format a string with arguments on standard error.
| 347 | |
| 348 | // Shortcut version to format a string with arguments on standard error. |
| 349 | int MsgPrintErr(const char* format, const SafeArg& arg, bool userFormatting) |
| 350 | { |
| 351 | StdioStream st(stderr, true); // flush |
| 352 | return MsgPrint(st, format, arg, userFormatting); |
| 353 | } |
| 354 | |
| 355 | } // namespace |
| 356 |
nothing calls this directly
no test coverage detected