Constructors
| 10 | public: |
| 11 | // Constructors |
| 12 | Box(double l, double w, double h) : m_length{l}, m_width{w}, m_height{h} |
| 13 | { std::cout << "Box(double, double, double) called.\n"; } |
| 14 | |
| 15 | explicit Box(double side) : Box{side, side, side} |
| 16 | { std::cout << "Box(double) called.\n"; } |
nothing calls this directly
no outgoing calls
no test coverage detected