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