| 71 | } |
| 72 | |
| 73 | OSMWayID From() const |
| 74 | { |
| 75 | return node_or_way.index() == TurnPathType::VIA_NODE_TURN_PATH |
| 76 | ? std::get<InputViaNodePath>(node_or_way).from |
| 77 | : std::get<InputViaWayPath>(node_or_way).from; |
| 78 | } |
| 79 | |
| 80 | OSMWayID To() const |
| 81 | { |
nothing calls this directly
no outgoing calls
no test coverage detected