| 197 | } |
| 198 | |
| 199 | bool FPathEdge::Connects(const FPathEdge& Other) const |
| 200 | { |
| 201 | return Start == Other.End || End == Other.Start; |
| 202 | } |
| 203 | |
| 204 | bool FPathEdge::ShareIndices(const FPathEdge* Other) const |
| 205 | { |
nothing calls this directly
no outgoing calls
no test coverage detected