| 447 | { |
| 448 | public: |
| 449 | inline Vector(int initSize, bool ownerOfObjects) { |
| 450 | this->base = new untyped::Vector(initSize, ownerOfObjects); } |
| 451 | |
| 452 | inline void put(T *newElement, int newPos = -1) |
| 453 | { ((untyped::Vector*)this->base)->put(newElement, newPos); } |
nothing calls this directly
no outgoing calls
no test coverage detected