From befc3c3ae7b2c824db40e2c797ac7e5f2c3fc335 Mon Sep 17 00:00:00 2001 From: Lee Thomason Date: Thu, 5 Apr 2018 15:53:14 -0700 Subject: [PATCH] fix compiler inconsistency --- tinyxml2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tinyxml2.cpp b/tinyxml2.cpp index 214dbb5..89b7913 100755 --- a/tinyxml2.cpp +++ b/tinyxml2.cpp @@ -2388,7 +2388,7 @@ void XMLDocument::PushDepth() { _parsingDepth++; if (_parsingDepth == TINYXML2_MAX_ELEMENT_DEPTH) { - SetError(XMLError::XML_ELEMENT_DEPTH_EXCEEDED, _parseCurLineNum, "Element nesting is too deep." ); + SetError(XML_ELEMENT_DEPTH_EXCEEDED, _parseCurLineNum, "Element nesting is too deep." ); } }