From: robertc <> Date: Sat, 12 Jul 2003 18:42:19 +0000 (+0000) Subject: Summary: Forgot to remove non-inlined templates in Array.h X-Git-Tag: SQUID_3_0_PRE1~33 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=98957463a7935cbb0e90ca0d27b44ea243c51f23;p=thirdparty%2Fsquid.git Summary: Forgot to remove non-inlined templates in Array.h Keywords: Do so! --- diff --git a/include/Array.h b/include/Array.h index 55163bd7e4..32dbd6e82c 100644 --- a/include/Array.h +++ b/include/Array.h @@ -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 VectorIteratorBase:: operator ++(int) return result; } -template -typename C::value_type & VectorIteratorBase::operator *() const -{ - return theVector->items[pos]; -} - -template -typename C::value_type * VectorIteratorBase::operator -> () const -{ - return &theVector->items[pos]; -} - template VectorIteratorBase& VectorIteratorBase::operator =(VectorIteratorBase const &old) {