| 23 | }; |
| 24 | |
| 25 | RoutingOptions CreateOptions(std::vector<RoutingOptions::Road> const & include) |
| 26 | { |
| 27 | RoutingOptions options; |
| 28 | |
| 29 | for (auto type : include) |
| 30 | options.Add(type); |
| 31 | |
| 32 | return options; |
| 33 | } |
| 34 | |
| 35 | void Checker(std::vector<RoutingOptions::Road> const & include) |
| 36 | { |
no test coverage detected