| 54 | } |
| 55 | |
| 56 | std::string DebugPrint(Checkpoints const & checkpoints) |
| 57 | { |
| 58 | std::ostringstream out; |
| 59 | out << "Checkpoints("; |
| 60 | for (auto const & pt : checkpoints.GetPoints()) |
| 61 | out << DebugPrint(mercator::ToLatLon(pt)) << "; "; |
| 62 | out << "passed: " << checkpoints.GetPassedIdx() << ")"; |
| 63 | return out.str(); |
| 64 | } |
| 65 | } // namespace routing |
nothing calls this directly
no test coverage detected