| 22 | } |
| 23 | |
| 24 | void FNodeChain::BuildChain(const TSharedRef<FCluster>& Cluster, const TSharedPtr<TArray<int8>>& Breakpoints) |
| 25 | { |
| 26 | ON_SCOPE_EXIT |
| 27 | { |
| 28 | bIsLeaf = Cluster->GetNode(Seed.Node)->IsLeaf() || Cluster->GetNode(Links.Last().Node)->IsLeaf(); |
| 29 | if (bIsClosedLoop) { bIsLeaf = false; } |
| 30 | FixUniqueHash(); |
| 31 | }; |
| 32 | |
| 33 | TSet<int32> Visited; |
| 34 |
nothing calls this directly
no outgoing calls
no test coverage detected