| 84 | } |
| 85 | |
| 86 | bool trackCircuitIteratorsMatch(const TrackCircuitIterator* firstIt, const TrackCircuitIterator* secondIt) |
| 87 | { |
| 88 | return ( |
| 89 | firstIt->currentZ == secondIt->currentZ && firstIt->currentDirection == secondIt->currentDirection |
| 90 | && firstIt->current.x == secondIt->current.x && firstIt->current.y == secondIt->current.y); |
| 91 | } |
| 92 | |
| 93 | void trackGetBack(const CoordsXYE& input, CoordsXYE* output) |
| 94 | { |
no outgoing calls
no test coverage detected