Skip to content

Commit

Permalink
fix(autoware_behavior_path_planner): fix syntaxError (autowarefoundat…
Browse files Browse the repository at this point in the history
…ion#8834)

fix:syntaxError

Signed-off-by: kobayu858 <[email protected]>
  • Loading branch information
kobayu858 authored Sep 17, 2024
1 parent 6effe2c commit e67c5c6
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ BehaviorPathPlannerNode::BehaviorPathPlannerNode(const rclcpp::NodeOptions & nod
const std::lock_guard<std::mutex> lock(mutex_manager_); // for planner_manager_

const auto slots = declare_parameter<std::vector<std::string>>("slots");
/* cppcheck-suppress syntaxError */
std::vector<std::vector<std::string>> slot_configuration{slots.size()};
for (size_t i = 0; i < slots.size(); ++i) {
const auto & slot = slots.at(i);
Expand Down

0 comments on commit e67c5c6

Please sign in to comment.