diff options
author | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-05-26 05:17:13 +0000 |
---|---|---|
committer | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-05-26 05:17:13 +0000 |
commit | 7e94e0c5ef51b505c54382d9d52e8ab01d6edccb (patch) | |
tree | 72f58835ec69349a23cd99a551c3345e9aa963c2 /src | |
parent | 367e7c706b057b71c0cb0c2ede2bc18449b95338 (diff) |
Removed redundant template
git-svn-id: http://pugixml.googlecode.com/svn/trunk@457 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'src')
-rw-r--r-- | src/pugixml.hpp | 2 | ||||
-rw-r--r-- | src/pugixpath.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/pugixml.hpp b/src/pugixml.hpp index f57dba2..d278358 100644 --- a/src/pugixml.hpp +++ b/src/pugixml.hpp @@ -2160,7 +2160,7 @@ namespace pugi void push_back(const xpath_node& n);
- template <typename Iterator> void append(Iterator begin, Iterator end);
+ void append(const_iterator begin, const_iterator end);
void truncate(iterator it);
diff --git a/src/pugixpath.cpp b/src/pugixpath.cpp index d409655..7a47349 100644 --- a/src/pugixpath.cpp +++ b/src/pugixpath.cpp @@ -764,7 +764,7 @@ namespace pugi }
}
- template <typename Iterator> void xpath_node_set::append(Iterator begin, Iterator end)
+ void xpath_node_set::append(const_iterator begin, const_iterator end)
{
if (begin == end) return;
|