| 8 | { |
| 9 | public: |
| 10 | Box() = default; // Default constructor |
| 11 | Box(double length, double width, double height) |
| 12 | : m_length{ std::max(length,width) } |
| 13 | , m_width { std::min(length,width) } |
nothing calls this directly
no outgoing calls
no test coverage detected