| 225 | } |
| 226 | |
| 227 | FAsyncToken::FAsyncToken(const TWeakPtr<FAsyncMultiHandle>& InHandle, const FName& InName): |
| 228 | Handle(InHandle), Name(InName) |
| 229 | { |
| 230 | if (const TSharedPtr<FAsyncMultiHandle> PinnedHandle = Handle.Pin()) { PinnedHandle->IncrementPendingTasks(); } |
| 231 | } |
| 232 | |
| 233 | FAsyncToken::~FAsyncToken() |
| 234 | { |
nothing calls this directly
no test coverage detected