Codechange: Replaced SmallVector::Resize() with std::vector::resize()

This commit is contained in:
Henry Wilson
2018-09-23 16:43:00 +01:00
committed by PeterN
parent a690936ed7
commit bad2c2154b
5 changed files with 4 additions and 13 deletions

View File

@@ -482,7 +482,7 @@ struct RefitWindow : public Window {
/* 0xFF item is in front, other subtypes are sorted. So just truncate the list in the right spot */
for (uint i = 1; i < l.size(); i++) {
if (l[i].subtype >= refit_cyc) {
l.Resize(i);
l.resize(i);
break;
}
}