Sheep constructors
| 31 | |
| 32 | // Sheep constructors |
| 33 | Sheep::Sheep(std::string_view name, unsigned weight) |
| 34 | : Sheep{name, weight, static_cast<unsigned>(0.1 * weight)} |
| 35 | { |
| 36 | } |
| 37 | |
| 38 | Sheep::Sheep(std::string_view name, unsigned weight, unsigned wool) |
| 39 | : Animal{name, weight} |
nothing calls this directly
no outgoing calls
no test coverage detected