| 129 | } |
| 130 | |
| 131 | void startNamespace(const XML_Char*, const XML_Char*) noexcept { |
| 132 | if (namespace_depth_ > max_recursion_limit_) { |
| 133 | setError("Too deeply nested"); |
| 134 | } |
| 135 | ++namespace_depth_; |
| 136 | } |
| 137 | |
| 138 | void endNamespace(const XML_Char*) noexcept { |
| 139 | if (namespace_depth_ > 0) { |