| 15 | struct EdgeData |
| 16 | { |
| 17 | explicit EdgeData() |
| 18 | : turn_id(0), shortcut(false), weight{0}, duration(0), forward(false), backward(false), |
| 19 | distance{0} |
| 20 | { |
| 21 | } |
| 22 | |
| 23 | EdgeData(const NodeID turn_id, |
| 24 | const bool shortcut, |
nothing calls this directly
no outgoing calls
no test coverage detected