Destructor
| 49 | |
| 50 | // Destructor |
| 51 | ~vector() { |
| 52 | clear(); // Destroy elements |
| 53 | deallocate(data_); // Deallocate memory |
| 54 | } |
| 55 | |
| 56 | // Copy Assignment Operator |
| 57 | vector& operator=(const vector& other) { |
nothing calls this directly
no outgoing calls
no test coverage detected