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<type> &other );
This commit is contained in:
dhewg 2011-12-03 01:24:28 +01:00 committed by Daniel Gibson
parent 670f2f2be8
commit 2101e6d35d

View file

@ -148,7 +148,7 @@ ID_INLINE int idVectorSet<type,dimension>::FindVector( const type &v, const floa
}
hash.Add( hashKey, idList<type>::Num() );
Append( v );
this->Append( v );
return idList<type>::Num()-1;
}