Out-of-class member definitions must be explicitly marked as inline
| 25 | |
| 26 | // Out-of-class member definitions must be explicitly marked as inline |
| 27 | inline Box::Box(double length, double width, double height) |
| 28 | : m_length{ length }, m_width{ width }, m_height{ height } |
| 29 | {} |
| 30 | |
| 31 | inline double Box::volume() const |
| 32 | { |
nothing calls this directly
no outgoing calls
no test coverage detected