From 7e94e0c5ef51b505c54382d9d52e8ab01d6edccb Mon Sep 17 00:00:00 2001
From: "arseny.kapoulkine"
 <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>
Date: Wed, 26 May 2010 05:17:13 +0000
Subject: Removed redundant template

git-svn-id: http://pugixml.googlecode.com/svn/trunk@457 99668b35-9821-0410-8761-19e4c4f06640
---
 src/pugixml.hpp   | 2 +-
 src/pugixpath.cpp | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

(limited to 'src')

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;
 
-- 
cgit v1.2.3