| 278 | } |
| 279 | |
| 280 | bool SafeAdd(T const & val) |
| 281 | { |
| 282 | if (Size < Capacity) { |
| 283 | Buf[Size++] = val; |
| 284 | return true; |
| 285 | } else { |
| 286 | return false; |
| 287 | } |
| 288 | } |
| 289 | |
| 290 | void Remove(uint32_t index) |
| 291 | { |
nothing calls this directly
no outgoing calls
no test coverage detected