mirror of
https://github.com/dhewm/dhewm3-sdk.git
synced 2024-11-25 05:51:15 +00:00
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:
parent
670f2f2be8
commit
2101e6d35d
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue