| 123 | } |
| 124 | |
| 125 | double AStarProgress::UpdateProgressImpl(ListItem subProgress, ms::LatLon const & current, ms::LatLon const & end) |
| 126 | { |
| 127 | if (std::next(subProgress) != m_subProgresses.end()) |
| 128 | return subProgress->UpdateProgress(UpdateProgressImpl(std::next(subProgress), current, end)); |
| 129 | |
| 130 | return subProgress->UpdateProgress(current, end); |
| 131 | } |
| 132 | } // namespace routing |
nothing calls this directly
no test coverage detected