| 251 | // (virtual inheritance with shared_ptr holder) |
| 252 | struct SftVirtBase : std::enable_shared_from_this<SftVirtBase> { |
| 253 | SftVirtBase() = default; |
| 254 | virtual ~SftVirtBase() = default; |
| 255 | static std::shared_ptr<SftVirtBase> create() { return std::make_shared<SftVirtBase>(); } |
| 256 | virtual std::string name() { return "SftVirtBase"; } |
no outgoing calls
no test coverage detected