Skip to content

Commit

Permalink
style(pre-commit): autofix
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Oct 25, 2023
1 parent 76ca367 commit e064004
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ class GoalSearcher : public GoalSearcherBase

GoalCandidates search() override;
void update(GoalCandidates & goal_candidates) const override;
GoalCandidate getClosetGoalCandidateAlongLanes(const GoalCandidates & goal_candidates) const override;
GoalCandidate getClosetGoalCandidateAlongLanes(
const GoalCandidates & goal_candidates) const override;

private:
void countObjectsToAvoid(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ class GoalSearcherBase
MultiPolygon2d getAreaPolygons() { return area_polygons_; }
virtual GoalCandidates search() = 0;
virtual void update([[maybe_unused]] GoalCandidates & goal_candidates) const { return; }
virtual GoalCandidate getClosetGoalCandidateAlongLanes(const GoalCandidates & goal_candidates) const = 0;
virtual GoalCandidate getClosetGoalCandidateAlongLanes(
const GoalCandidates & goal_candidates) const = 0;

protected:
GoalPlannerParameters parameters_{};
Expand Down

0 comments on commit e064004

Please sign in to comment.