| 132 | return std::make_shared<Tiger>(*this); // upcast |
| 133 | } |
| 134 | std::unique_ptr<Animal> clone_unique_ptr() const override { |
| 135 | return std::unique_ptr<Tiger>(new Tiger(*this)); // upcast |
| 136 | } |
| 137 | }; |
| 138 | |
| 139 | } // namespace test_class_sh_mi_thunks |
nothing calls this directly
no outgoing calls
no test coverage detected