| 10 | { |
| 11 | public: |
| 12 | Carton() = default; |
| 13 | |
| 14 | Carton(double side, std::string_view material) : Box{side}, m_material{material} |
| 15 | { std::cout << "Carton(double,string_view) called.\n"; } |
nothing calls this directly
no outgoing calls
no test coverage detected