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/pugixpath.cpp | |
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/pugixpath.cpp')
-rw-r--r-- | src/pugixpath.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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;
|