MyVector with initial size
| 10 | public: |
| 11 | // MyVector with initial size |
| 12 | MyVector(const std::size_t n) |
| 13 | : v(n) |
| 14 | { |
| 15 | } |
| 16 | |
| 17 | // MyVector with initial size and value |
| 18 | MyVector(const std::size_t n, const double initialValue) |
nothing calls this directly
no outgoing calls
no test coverage detected