Skip to content

Commit

Permalink
fixing warnings refs #12
Browse files Browse the repository at this point in the history
  • Loading branch information
namdre committed Nov 15, 2024
1 parent 7feb476 commit d5e88f8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -677,7 +677,7 @@ void
MSActuatedTrafficLightLogic::findTargets(int origStep, int n, SUMOTime priorTransition, std::map<int, SUMOTime>& found) {
std::pair<int, SUMOTime> tDur = getTarget(n);
int target = tDur.first;
int transitionTime = tDur.second + priorTransition;
SUMOTime transitionTime = tDur.second + priorTransition;
//std::cout << " findTargets origStep=" << origStep << " n=" << n << " ptt=" << priorTransition << " target=" << target << " tt=" << transitionTime << "\n";
if (target == origStep) {
// full circle
Expand Down

0 comments on commit d5e88f8

Please sign in to comment.