| 531 | } |
| 532 | |
| 533 | bool FGraph::InsertEdge(const int32 A, const int32 B, FEdge& OutEdge, const int32 IOIndex) |
| 534 | { |
| 535 | FWriteScopeLock WriteLock(GraphLock); |
| 536 | return InsertEdge_Unsafe(A, B, OutEdge, IOIndex); |
| 537 | } |
| 538 | |
| 539 | bool FGraph::InsertEdge_Unsafe(const FEdge& Edge) |
| 540 | { |
no outgoing calls
no test coverage detected