Constructor
| 4 | |
| 5 | // Constructor |
| 6 | Animal::Animal(std::string_view name, unsigned weight) |
| 7 | : m_name{ name }, m_weight{ weight } |
| 8 | {} |
| 9 | |
| 10 | // Return string describing the animal |
| 11 | std::string Animal::who() const |
nothing calls this directly
no outgoing calls
no test coverage detected