CLI/runtime errors (prints to stderr)
| 37 | |
| 38 | // CLI/runtime errors (prints to stderr) |
| 39 | static void cli_error(const std::string& message) { |
| 40 | std::cerr << error_colors::RED << "error" << error_colors::RESET << ": " << message << std::endl; |
| 41 | } |
| 42 | |
| 43 | // CLI/runtime errors with additional context (prints to stderr) |
| 44 | static void cli_error(const std::string& message, const std::string& context) { |
nothing calls this directly
no outgoing calls
no test coverage detected