Skip to content

Commit c842d1a

Browse files
committed
fix format
1 parent 2fa8f5f commit c842d1a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

simulation/behavior_tree_plugin/src/vehicle/follow_lane_sequence/follow_lane_action.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,8 @@ BT::NodeStatus FollowLaneAction::tick()
116116
if (
117117
distance_to_stopline.value() <=
118118
calculateStopDistance(behavior_parameter_.dynamic_constraints) +
119-
vehicle_parameters.bounding_box.dimensions.x * bounding_box_half_factor + stop_line_margin) {
119+
vehicle_parameters.bounding_box.dimensions.x * bounding_box_half_factor +
120+
stop_line_margin) {
120121
return BT::NodeStatus::FAILURE;
121122
}
122123
}

0 commit comments

Comments
 (0)