From 238a21b95f88ffe53b18e54641b4101bbec019f3 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 ); --- neo/idlib/containers/VectorSet.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neo/idlib/containers/VectorSet.h b/neo/idlib/containers/VectorSet.h index 4e18daab..81fe6253 100644 --- a/neo/idlib/containers/VectorSet.h +++ b/neo/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; }