Constructor
| 15 | |
| 16 | // Constructor |
| 17 | Animal::Animal(std::string_view name, unsigned weight) |
| 18 | : m_name{ name }, m_weight{ weight } |
| 19 | {} |
| 20 | |
| 21 | // Return string describing the animal |
| 22 | std::string Animal::who() const |
nothing calls this directly
no outgoing calls
no test coverage detected