diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/pugixml.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/pugixml.cpp b/src/pugixml.cpp index 0d762a7..20d8ca7 100644 --- a/src/pugixml.cpp +++ b/src/pugixml.cpp @@ -10660,6 +10660,11 @@ PUGI__NS_BEGIN if (_right) _right->optimize(alloc); if (_next) _next->optimize(alloc); + optimize_self(alloc); + } + + void optimize_self(xpath_allocator* alloc) + { // Rewrite [position()=expr] with [expr] // Note that this step has to go before classification to recognize [position()=1] if ((_type == ast_filter || _type == ast_predicate) && |