| 258 | struct SftVirtDerived : SftVirtBase { |
| 259 | using SftVirtBase::SftVirtBase; |
| 260 | static std::shared_ptr<SftVirtDerived> create() { return std::make_shared<SftVirtDerived>(); } |
| 261 | std::string name() override { return "SftVirtDerived"; } |
| 262 | }; |
| 263 | struct SftVirtDerived2 : virtual SftVirtDerived { |
nothing calls this directly
no outgoing calls
no test coverage detected