| 398 | } |
| 399 | |
| 400 | std::vector<int> getDriverIds() { |
| 401 | std::vector<int> driverIds; |
| 402 | for (auto& pair : drivers) { |
| 403 | driverIds.push_back(pair.first); |
| 404 | } |
| 405 | return driverIds; |
| 406 | } |
| 407 | |
| 408 | Driver* getDriver(int driverId) { |
| 409 | if (driverId == -1) |
nothing calls this directly
no outgoing calls
no test coverage detected