Skip to content

Commit 3bb5764

Browse files
authored
fix(goal_planner): fix updateCollisionCheckDebugMap timing in checkSafetyWithIntegralPredictedPolygon (autowarefoundation#6413)
Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
1 parent d763c49 commit 3bb5764

File tree

1 file changed

+1
-1
lines changed
  • planning/behavior_path_planner_common/src/utils/path_safety_checker

1 file changed

+1
-1
lines changed

planning/behavior_path_planner_common/src/utils/path_safety_checker/safety_check.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -543,9 +543,9 @@ bool checkSafetyWithIntegralPredictedPolygon(
543543
updateCollisionCheckDebugMap(debug_map, debug_pair, /*is_safe=*/false);
544544
return false;
545545
}
546-
updateCollisionCheckDebugMap(debug_map, debug_pair, /*is_safe=*/true);
547546
}
548547
}
548+
updateCollisionCheckDebugMap(debug_map, debug_pair, /*is_safe=*/true);
549549
}
550550
return true;
551551
}

0 commit comments

Comments
 (0)