Skip to content

Commit

Permalink
synxat error fix (VROOM-Project#946)
Browse files Browse the repository at this point in the history
  • Loading branch information
mebymyself committed Jul 16, 2023
1 parent caedda4 commit 1ada6a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/algorithms/heuristics/heuristics.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -924,8 +924,8 @@ template <class T> T initial_routes(const Input& input) {

if (!input.vehicle_ok_with_job(v, job_rank)) {
throw InputException("Missing skill or step out of reach for vehicle=" +
std::to_string(vehicle.id) + ", job=" +)
std::to_string(job.id) + ".";
std::to_string(vehicle.id) + ", job=" +
std::to_string(job.id) + ".");
}

assert(step.job_type.has_value());
Expand Down

0 comments on commit 1ada6a5

Please sign in to comment.