| 419 | } |
| 420 | |
| 421 | void DoResize () |
| 422 | { |
| 423 | size_t allocsize = sizeof(T)*Most; |
| 424 | Array = (T *)realloc (Array, allocsize); |
| 425 | } |
| 426 | |
| 427 | void DoDelete (unsigned int first, unsigned int last) |
| 428 | { |
nothing calls this directly
no outgoing calls
no test coverage detected