| 181 | } |
| 182 | |
| 183 | BeVTrackingList* BeVTrackingContext::AllocEmptyList() |
| 184 | { |
| 185 | int allocBytes = sizeof(int) * (2); |
| 186 | auto newList = (BeVTrackingList*)mAlloc.AllocBytes(allocBytes); |
| 187 | mStats.mListBytes += allocBytes; |
| 188 | newList->mSize = 0; |
| 189 | newList->mNumChanges = 0; |
| 190 | return newList; |
| 191 | } |
| 192 | |
| 193 | BeVTrackingList* BeVTrackingContext::AddFiltered(BeVTrackingList* list, SizedArrayImpl<int>& filteredAdds, bool perserveChangeList) |
| 194 | { |
no test coverage detected