Skip to content
Snippets Groups Projects
Commit 84ff2fbd authored by arseny.kapoulkine's avatar arseny.kapoulkine
Browse files

XPath: m_ prefix changed to _

git-svn-id: http://pugixml.googlecode.com/svn/trunk@644 99668b35-9821-0410-8761-19e4c4f06640
parent d4d82366
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment