| 20 | { |
| 21 | public: |
| 22 | Stack() = default; // Default constructor |
| 23 | |
| 24 | Stack(const Stack & stack); // Copy constructor |
| 25 | Stack& operator=(const Stack & rhs); // Copy assignment operator |
nothing calls this directly
no outgoing calls
no test coverage detected