diff options
author | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-07-22 07:54:34 +0000 |
---|---|---|
committer | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-07-22 07:54:34 +0000 |
commit | 93bb5dcb43a8f80044a12fab962ba546bcb5df6a (patch) | |
tree | 273bb3f276d3c682abac8da7a9ee72ccb870f2cb /src/pugixml.hpp | |
parent | 0363bccfc910389e777fd62f126fe60d21a47fbb (diff) |
XPath: Restored document order sorting optimization (it's now automatic for nodes that were loaded and not significantly altered), minor traversal optimizations
git-svn-id: http://pugixml.googlecode.com/svn/trunk@613 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'src/pugixml.hpp')
-rw-r--r-- | src/pugixml.hpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/pugixml.hpp b/src/pugixml.hpp index 281a0ea..81f5769 100644 --- a/src/pugixml.hpp +++ b/src/pugixml.hpp @@ -646,8 +646,7 @@ namespace pugi bool as_bool() const; /// \internal Document order or 0 if not set - /// \deprecated This function is deprecated - PUGIXML_DEPRECATED unsigned int document_order() const; + const void* document_order() const; public: /** @@ -1466,8 +1465,7 @@ namespace pugi #endif /// \internal Document order or 0 if not set - /// \deprecated This function is deprecated - PUGIXML_DEPRECATED unsigned int document_order() const; + const void* document_order() const; /** * Print subtree to writer |