Skip to content

Commit

Permalink
TiXmlBase::errorString. Added \n at the beginning of error message
Browse files Browse the repository at this point in the history
  • Loading branch information
jgalan committed Mar 31, 2019
1 parent d366b71 commit ca72edd
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions source/tools/external/tinyxml/tinyxmlerror.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,21 +33,21 @@ distribution.

const char* TiXmlBase::errorString[ TiXmlBase::TIXML_ERROR_STRING_COUNT ] =
{
"No error",
"Error",
"Failed to open file",
"Error parsing Element.",
"Failed to read Element name",
"Error reading Element value.",
"Error reading Attributes.",
"Error: empty tag.",
"Error reading end tag.",
"Error parsing Unknown.",
"Error parsing Comment.",
"Error parsing Declaration.",
"Error document empty.",
"Error null (0) or unexpected EOF found in input stream.",
"Error parsing CDATA.",
"Error when TiXmlDocument added to document, because TiXmlDocument can only be at the root.",
"Error: multiple ROOT Elements in the document",
"\nNo error",
"\nError",
"\nFailed to open file",
"\nError parsing Element.",
"\nFailed to read Element name",
"\nError reading Element value.",
"\nError reading Attributes.",
"\nError: empty tag.",
"\nError reading end tag.",
"\nError parsing Unknown.",
"\nError parsing Comment.",
"\nError parsing Declaration.",
"\nError document empty.",
"\nError null (0) or unexpected EOF found in input stream.",
"\nError parsing CDATA.",
"\nError when TiXmlDocument added to document, because TiXmlDocument can only be at the root.",
"\nError: multiple ROOT Elements in the document",
};

0 comments on commit ca72edd

Please sign in to comment.