| 386 | |
| 387 | public: |
| 388 | inline NotSoSimpleVector (int initAlloc) |
| 389 | { |
| 390 | this->numMain = this->numExtra = 0; |
| 391 | this->numAllocMain = initAlloc; |
| 392 | this->numAllocExtra = initAlloc; |
| 393 | this->arrayMain = this->arrayExtra1 = this->arrayExtra2 = NULL; |
| 394 | this->startExtra = -1; |
| 395 | } |
| 396 | |
| 397 | inline ~NotSoSimpleVector () |
| 398 | { |
nothing calls this directly
no outgoing calls
no test coverage detected