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