| 263 | struct SftVirtDerived2 : virtual SftVirtDerived { |
| 264 | using SftVirtDerived::SftVirtDerived; |
| 265 | static std::shared_ptr<SftVirtDerived2> create() { |
| 266 | return std::make_shared<SftVirtDerived2>(); |
| 267 | } |
| 268 | std::string name() override { return "SftVirtDerived2"; } |
| 269 | std::string call_name(const std::shared_ptr<SftVirtDerived2> &d2) { return d2->name(); } |
| 270 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected