From 2101e6d35df67a136afad3aa4568ce1ebb0f4601 Mon Sep 17 00:00:00 2001 From: dhewg Date: Sat, 3 Dec 2011 01:24:28 +0100 Subject: [PATCH] Fix unqualified lookup into dependent bases of class templates idlib/containers/VectorSet.h:151:2: error: use of undeclared identifier 'Append' note: must qualify identifier to find this declaration in dependent base class int Append( const type & obj); int Append( const idList &other ); --- idlib/containers/VectorSet.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/idlib/containers/VectorSet.h b/idlib/containers/VectorSet.h index 4e18daa..81fe625 100644 --- a/idlib/containers/VectorSet.h +++ b/idlib/containers/VectorSet.h @@ -148,7 +148,7 @@ ID_INLINE int idVectorSet::FindVector( const type &v, const floa } hash.Add( hashKey, idList::Num() ); - Append( v ); + this->Append( v ); return idList::Num()-1; }