MCPcopy Create free account
hub / github.com/BehaviorTree/BehaviorTree.CPP / ErrorIDToName

Method ErrorIDToName

3rdparty/tinyxml2/tinyxml2.cpp:2526–2532  ·  view source on GitHub ↗

static*/

Source from the content-addressed store, hash-verified

2524
2525
2526/*static*/ const char* XMLDocument::ErrorIDToName(XMLError errorID)
2527{
2528 TIXMLASSERT( errorID >= 0 && errorID < XML_ERROR_COUNT );
2529 const char* errorName = _errorNames[errorID];
2530 TIXMLASSERT( errorName && errorName[0] );
2531 return errorName;
2532}
2533
2534const char* XMLDocument::ErrorStr() const
2535{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected