From 1ada6a5d088c3a5f615e3ac1edb4945c47f33621 Mon Sep 17 00:00:00 2001 From: Michael_D Date: Sun, 16 Jul 2023 08:52:50 -0400 Subject: [PATCH] synxat error fix (#946) --- src/algorithms/heuristics/heuristics.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/algorithms/heuristics/heuristics.cpp b/src/algorithms/heuristics/heuristics.cpp index dc6125e24..159ede4c7 100644 --- a/src/algorithms/heuristics/heuristics.cpp +++ b/src/algorithms/heuristics/heuristics.cpp @@ -924,8 +924,8 @@ template 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());