| 52 | } |
| 53 | |
| 54 | TurnLookupTable readTurnValues(const std::vector<std::string> &paths) |
| 55 | { |
| 56 | CSVFilesParser<Turn, PenaltySource> parser(1, |
| 57 | x3::ulong_long >> ',' >> x3::ulong_long >> ',' >> |
| 58 | x3::ulong_long, |
| 59 | x3::double_ >> -(',' >> x3::double_)); |
| 60 | return parser(paths); |
| 61 | } |
| 62 | } // namespace osrm::updater::csv |
no outgoing calls
no test coverage detected