MCPcopy Create free account
hub / github.com/Kitware/CMake / ReportError

Method ReportError

Source/cmXMLParser.cxx:190–198  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

188}
189
190void 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}

Callers 14

ReportXmlParseErrorMethod · 0.95
ReportDuplicateTargetMethod · 0.45
EvaluateExpressionMethod · 0.45
EvaluateMethod · 0.45
CheckVersionMethod · 0.45
CheckDefaultTargetsMethod · 0.45
GenerateImportPrefixMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected