| 60 | |
| 61 | private: |
| 62 | struct Data |
| 63 | { |
| 64 | explicit Data(T* _t); |
| 65 | ~Data(); |
| 66 | |
| 67 | T* t; |
| 68 | std::atomic_bool owned; |
| 69 | Promise<Owned<T>> promise; |
| 70 | }; |
| 71 | |
| 72 | std::shared_ptr<Data> data; |
| 73 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected