]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Summary: Forgot to remove non-inlined templates in Array.h
authorrobertc <>
Sat, 12 Jul 2003 18:42:19 +0000 (18:42 +0000)
committerrobertc <>
Sat, 12 Jul 2003 18:42:19 +0000 (18:42 +0000)
Keywords:

Do so!

include/Array.h

index 55163bd7e40441ae9bddcfb38433de1720a392b6..32dbd6e82c9d08515f44729d7dd90323b8437fea 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: Array.h,v 1.13 2003/07/12 12:39:56 robertc Exp $
+ * $Id: Array.h,v 1.14 2003/07/12 12:42:19 robertc Exp $
  *
  * AUTHOR: Alex Rousskov
  *
@@ -323,18 +323,6 @@ VectorIteratorBase<C> VectorIteratorBase<C>:: operator ++(int)
     return result;
 }
 
-template<class C>
-typename C::value_type & VectorIteratorBase<C>::operator *() const
-{
-    return theVector->items[pos];
-}
-
-template<class C>
-typename C::value_type * VectorIteratorBase<C>::operator -> () const
-{
-    return &theVector->items[pos];
-}
-
 template<class C>
 VectorIteratorBase<C>&
 VectorIteratorBase<C>::operator =(VectorIteratorBase const &old) {