Sheep constructors
| 15 | |
| 16 | // Sheep constructors |
| 17 | Sheep::Sheep(std::string_view name, unsigned weight) |
| 18 | : Sheep{name, weight, static_cast<unsigned>(0.1 * weight)} |
| 19 | { |
| 20 | } |
| 21 | |
| 22 | Sheep::Sheep(std::string_view name, unsigned weight, unsigned wool) |
| 23 | : Animal{name, weight} |
nothing calls this directly
no outgoing calls
no test coverage detected