| 425 | } |
| 426 | |
| 427 | void DoDelete (unsigned int first, unsigned int last) |
| 428 | { |
| 429 | assert (last != ~0u); |
| 430 | for (unsigned int i = first; i <= last; ++i) |
| 431 | { |
| 432 | Array[i].~T(); |
| 433 | } |
| 434 | } |
| 435 | }; |
| 436 | |
| 437 | // TDeletingArray ----------------------------------------------------------- |
nothing calls this directly
no outgoing calls
no test coverage detected