Skip to content

Commit b6b94b5

Browse files
remove parenthesis
Signed-off-by: Daniel Sanchez <danielsanchezaran@gmail.com>
1 parent 0a351cc commit b6b94b5

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

planning/behavior_path_planner_common/include/behavior_path_planner_common/turn_signal_decider.hpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -238,9 +238,8 @@ class TurnSignalDecider
238238
lanes.begin(), lanes.end(), [&shifted_vehicle_footprint](const auto & lane) {
239239
const auto & left_bound = lane.leftBound2d().basicLineString();
240240
const auto & right_bound = lane.rightBound2d().basicLineString();
241-
return (
242-
intersects(left_bound, shifted_vehicle_footprint) ||
243-
intersects(right_bound, shifted_vehicle_footprint));
241+
return intersects(left_bound, shifted_vehicle_footprint) ||
242+
intersects(right_bound, shifted_vehicle_footprint);
244243
});
245244
});
246245
};

0 commit comments

Comments
 (0)