MCPcopy Create free account
hub / github.com/Norbyte/bg3se / ErrorIDToName

Method ErrorIDToName

CoreLib/tinyxml2.cpp:2493–2499  ·  view source on GitHub ↗

static*/

Source from the content-addressed store, hash-verified

2491
2492
2493/*static*/ const char* XMLDocument::ErrorIDToName(XMLError errorID)
2494{
2495 TIXMLASSERT( errorID >= 0 && errorID < XML_ERROR_COUNT );
2496 const char* errorName = _errorNames[errorID];
2497 TIXMLASSERT( errorName && errorName[0] );
2498 return errorName;
2499}
2500
2501const char* XMLDocument::ErrorStr() const
2502{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected