Skip to content

Commit

Permalink
remove superfluous quote from warning. refs #7578
Browse files Browse the repository at this point in the history
  • Loading branch information
namdre committed Sep 10, 2024
1 parent bb8e71e commit 57e2d1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/microsim/traffic_lights/MSDriveWay.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -837,7 +837,7 @@ MSDriveWay::buildRoute(const MSLink* origin, double length,
bool seekBidiSwitch = true;
bool foundUnsafeSwitch = false;
MSLane* toLane = origin ? origin->getViaLaneOrLane() : (*next)->getLanes()[0];
const std::string warnID = origin ? "rail signal " + getClickableTLLinkID(origin) + "'" : "insertion lane '" + toLane->getID() + "'";
const std::string warnID = origin ? "rail signal " + getClickableTLLinkID(origin) : "insertion lane '" + toLane->getID() + "'";
#ifdef DEBUG_DRIVEWAY_BUILDROUTE
gDebugFlag4 = DEBUG_HELPER(orignRS);
if (gDebugFlag4) std::cout << "buildRoute origin=" << warnID << " vehRoute=" << toString(ConstMSEdgeVector(next, end))
Expand Down

0 comments on commit 57e2d1b

Please sign in to comment.