dbertoni 00/12/06 13:16:22
Modified: c/src/PlatformSupport DOMStringHelper.cpp
Log:
Removed duplicate template definition.
Revision Changes Path
1.48 +0 -17 xml-xalan/c/src/PlatformSupport/DOMStringHelper.cpp
Index: DOMStringHelper.cpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/PlatformSupport/DOMStringHelper.cpp,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- DOMStringHelper.cpp 2000/12/05 19:02:58 1.47
+++ DOMStringHelper.cpp 2000/12/06 21:16:18 1.48
@@ -547,23 +547,6 @@
-template<class InputIteratorType, class OutputIteratorType>
-inline OutputIteratorType
-XalanCopy(
- InputIteratorType begin,
- InputIteratorType end,
- OutputIteratorType iterator)
-{
- for(; begin != end; ++iterator, ++begin)
- {
- *iterator = *begin;
- }
-
- return iterator;
-}
-
-
-
template<class InputIteratorType, class OutputIteratorType, class
UnaryFunction>
inline OutputIteratorType
XalanTransform(