Skip to content

Commit

Permalink
apply clang
Browse files Browse the repository at this point in the history
Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>
  • Loading branch information
TakaHoribe committed Feb 17, 2022
1 parent f5467f4 commit 30bd53f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,8 @@ AdaptiveCruiseController::AdaptiveCruiseController(
param_.rough_velocity_rate = node_->declare_parameter(acc_ns + "rough_velocity_rate", 0.9);

/* publisher */
pub_debug_ =
node_->create_publisher<tier4_debug_msgs::msg::Float32MultiArrayStamped>("~/adaptive_cruise_control/debug_values", 1);
pub_debug_ = node_->create_publisher<tier4_debug_msgs::msg::Float32MultiArrayStamped>(
"~/adaptive_cruise_control/debug_values", 1);
}

void AdaptiveCruiseController::insertAdaptiveCruiseVelocity(
Expand Down
3 changes: 2 additions & 1 deletion planning/obstacle_stop_planner/src/debug_marker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ ObstacleStopPlannerDebugNode::ObstacleStopPlannerDebugNode(
node_->create_publisher<visualization_msgs::msg::MarkerArray>("~/debug/marker", 1);
stop_reason_pub_ =
node_->create_publisher<tier4_planning_msgs::msg::StopReasonArray>("~/output/stop_reasons", 1);
pub_debug_values_ = node_->create_publisher<Float32MultiArrayStamped>("~/obstacle_stop/debug_values", 1);
pub_debug_values_ =
node_->create_publisher<Float32MultiArrayStamped>("~/obstacle_stop/debug_values", 1);
}

bool ObstacleStopPlannerDebugNode::pushPolygon(
Expand Down

0 comments on commit 30bd53f

Please sign in to comment.