Codechange: Replace SmallVector::Clear() with std::vector::clear()
This commit is contained in:
@@ -250,7 +250,7 @@ protected:
|
||||
if (!this->servers.NeedRebuild()) return;
|
||||
|
||||
/* Create temporary array of games to use for listing */
|
||||
this->servers.Clear();
|
||||
this->servers.clear();
|
||||
|
||||
for (NetworkGameList *ngl = _network_game_list; ngl != NULL; ngl = ngl->next) {
|
||||
*this->servers.Append() = ngl;
|
||||
|
Reference in New Issue
Block a user