commit | 73f5409b62c12dab6229eb31def6fd72102a5a9c | [log] [tgz] |
---|---|---|
author | orbitcowboy <orbitcowboy@web.de> | Wed Aug 14 09:30:30 2019 +0200 |
committer | orbitcowboy <orbitcowboy@web.de> | Wed Aug 14 09:30:30 2019 +0200 |
tree | b0158b9bb5a6a0eac4a0d01864b6faaaa297cab8 | |
parent | ff61650517cc32d524689366f977716e73d4f924 [diff] [blame] |
Improved const correctness. There are no functional changes intended.
diff --git a/tinyxml2.cpp b/tinyxml2.cpp index 6b79917..df84f77 100755 --- a/tinyxml2.cpp +++ b/tinyxml2.cpp
@@ -2101,7 +2101,7 @@ } -void XMLDocument::MarkInUse(XMLNode* node) +void XMLDocument::MarkInUse(const XMLNode* const node) { TIXMLASSERT(node); TIXMLASSERT(node->_parent == 0);