Constructors
| 6 | public: |
| 7 | // Constructors |
| 8 | Box() = default; |
| 9 | Box(double l, double w, double h) : m_length{l}, m_width{w}, m_height{h} {} |
| 10 | |
| 11 | double volume() const { return m_length * m_width * m_height; } |
nothing calls this directly
no outgoing calls
no test coverage detected