diff options
author | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-08-29 15:12:27 +0000 |
---|---|---|
committer | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-08-29 15:12:27 +0000 |
commit | 84ff2fbd5eae3e34e9f5fb60b2b6256a045f718d (patch) | |
tree | d411fd78fce384f0ace68e57c4aef2fdc6f12d99 /src/pugixml.hpp | |
parent | d4d82366af006a4beafc7f819add8d5bf6e424b3 (diff) |
XPath: m_ prefix changed to _
git-svn-id: http://pugixml.googlecode.com/svn/trunk@644 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'src/pugixml.hpp')
-rw-r--r-- | src/pugixml.hpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/pugixml.hpp b/src/pugixml.hpp index ce48a45..d3dfea6 100644 --- a/src/pugixml.hpp +++ b/src/pugixml.hpp @@ -1968,8 +1968,8 @@ namespace pugi xpath_query(const xpath_query&); xpath_query& operator=(const xpath_query&); - xpath_allocator* m_alloc; - xpath_ast_node* m_root; + xpath_allocator* _alloc; + xpath_ast_node* _root; xpath_parse_result _result; typedef xpath_ast_node* xpath_query::*unspecified_bool_type; @@ -2084,8 +2084,8 @@ namespace pugi class PUGIXML_CLASS xpath_node { private: - xml_node m_node; - xml_attribute m_attribute; + xml_node _node; + xml_attribute _attribute; /// \internal Safe bool type typedef xml_node xpath_node::*unspecified_bool_type; @@ -2184,13 +2184,13 @@ namespace pugi typedef const xpath_node* const_iterator; private: - type_t m_type; + type_t _type; - xpath_node m_storage; + xpath_node _storage; - xpath_node* m_begin; - xpath_node* m_end; - xpath_node* m_eos; + xpath_node* _begin; + xpath_node* _end; + xpath_node* _eos; typedef xpath_node* iterator; |