From dae6d908e5abff3090cc7378878b0c083c492bf8 Mon Sep 17 00:00:00 2001 From: "arseny.kapoulkine@gmail.com" Date: Fri, 23 Mar 2012 03:57:12 +0000 Subject: Const-correctness 'fixes' (it's impossible to be const-correct here so remove redundant member) git-svn-id: http://pugixml.googlecode.com/svn/trunk@879 99668b35-9821-0410-8761-19e4c4f06640 --- src/pugixml.cpp | 7 +------ src/pugixml.hpp | 3 +-- 2 files changed, 2 insertions(+), 8 deletions(-) (limited to 'src') diff --git a/src/pugixml.cpp b/src/pugixml.cpp index 0513e0d..13034f4 100644 --- a/src/pugixml.cpp +++ b/src/pugixml.cpp @@ -4090,12 +4090,7 @@ namespace pugi return xml_node(static_cast(page->allocator)); } - const xml_text xml_node::text() const - { - return xml_text(_root); - } - - xml_text xml_node::text() + xml_text xml_node::text() const { return xml_text(_root); } diff --git a/src/pugixml.hpp b/src/pugixml.hpp index beb5aa5..e838f0c 100644 --- a/src/pugixml.hpp +++ b/src/pugixml.hpp @@ -391,8 +391,7 @@ namespace pugi xml_node root() const; // Get text object for the current node - const xml_text text() const; - xml_text text(); + xml_text text() const; // Get child, attribute or next/previous sibling with the specified name xml_node child(const char_t* name) const; -- cgit v1.2.3