Box() {} // Explicitly defined default constructor
| 7 | public: |
| 8 | // Box() {} // Explicitly defined default constructor |
| 9 | Box() = default; // Defaulted default constructor |
| 10 | |
| 11 | // Constructor |
| 12 | Box(double length, double width, double height) |
nothing calls this directly
no outgoing calls
no test coverage detected