* Convenience method accessing the node directly after the argument. */
| 649 | * Convenience method accessing the node directly after the argument. |
| 650 | */ |
| 651 | inline Route::Node *n(Route::Node *node) |
| 652 | { |
| 653 | auto &route = *node->route(); |
| 654 | return route[node->idx() + 1]; |
| 655 | } |
| 656 | |
| 657 | inline Route::Node const *n(Route::Node const *node) |
| 658 | { |
no test coverage detected