HOTS: inline HOTS: 1958330
| 524 | // HOTS: inline <char> |
| 525 | // HOTS: 1958330 <TPathStop> |
| 526 | void Insert(T NewItem) |
| 527 | { |
| 528 | // Make sure we have enough capacity for the new item |
| 529 | SetMaxItemsIf(ItemCount + 1); |
| 530 | |
| 531 | // Put the character to the slot that has been reserved |
| 532 | ItemArray[ItemCount++] = NewItem; |
| 533 | } |
| 534 | |
| 535 | // HOTS: 19583A0 <TPathStop> |
| 536 | void GrowArray(DWORD NewItemCount) |
no outgoing calls
no test coverage detected