| 136 | |
| 137 | public: |
| 138 | inline SimpleVector (int initAlloc = 1) |
| 139 | { |
| 140 | this->num = 0; |
| 141 | this->numAlloc = initAlloc; |
| 142 | this->array = NULL; |
| 143 | } |
| 144 | |
| 145 | inline SimpleVector (const SimpleVector &o) { |
| 146 | this->array = NULL; |
nothing calls this directly
no outgoing calls
no test coverage detected