| 188 | } |
| 189 | |
| 190 | void cmXMLParser::ReportError(int line, int /*unused*/, char const* msg) |
| 191 | { |
| 192 | if (this->ReportCallback) { |
| 193 | this->ReportCallback(line, msg, this->ReportCallbackData); |
| 194 | } else { |
| 195 | std::cerr << "Error parsing XML in stream at line " << line << ": " << msg |
| 196 | << std::endl; |
| 197 | } |
| 198 | } |
no outgoing calls
no test coverage detected