| 2531 | } |
| 2532 | |
| 2533 | void XMLDocument::PushDepth() |
| 2534 | { |
| 2535 | _parsingDepth++; |
| 2536 | if (_parsingDepth == TINYXML2_MAX_ELEMENT_DEPTH) { |
| 2537 | SetError(XML_ELEMENT_DEPTH_EXCEEDED, _parseCurLineNum, "Element nesting is too deep." ); |
| 2538 | } |
| 2539 | } |
| 2540 | |
| 2541 | void XMLDocument::PopDepth() |
| 2542 | { |