| 288 | } |
| 289 | |
| 290 | void Remove(uint32_t index) |
| 291 | { |
| 292 | for (auto i = index + 1; i < Size; i++) { |
| 293 | Buf[index] = Buf[index + 1]; |
| 294 | } |
| 295 | |
| 296 | Size--; |
| 297 | } |
| 298 | }; |
| 299 | |
| 300 | struct ObjectHandle |
nothing calls this directly
no outgoing calls
no test coverage detected