| 242 | // Issue #865: shared_from_this doesn't work with virtual inheritance |
| 243 | struct SharedFromThisVBase : std::enable_shared_from_this<SharedFromThisVBase> { |
| 244 | SharedFromThisVBase() = default; |
| 245 | SharedFromThisVBase(const SharedFromThisVBase &) = default; |
| 246 | virtual ~SharedFromThisVBase() = default; |
| 247 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected