Skip to content

Commit 27e929d

Browse files
style(pre-commit): autofix
1 parent 2e731e7 commit 27e929d

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

planning/autoware_mission_planner/src/lanelet2_plugins/default_planner.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,8 @@ PlannerPlugin::LaneletRoute DefaultPlanner::plan(const RoutePoints & points)
305305

306306
std::stringstream log_ss;
307307
for (const auto & point : points) {
308-
log_ss << "x: " << point.position.x << " " << "y: " << point.position.y << std::endl;
308+
log_ss << "x: " << point.position.x << " "
309+
<< "y: " << point.position.y << std::endl;
309310
}
310311
RCLCPP_DEBUG_STREAM(
311312
logger, "start planning route with check points: " << std::endl

sensing/autoware_pointcloud_preprocessor/src/vector_map_filter/lanelet2_map_filter_node.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -228,8 +228,9 @@ void Lanelet2MapFilterComponent::pointcloudCallback(const PointCloud2ConstPtr cl
228228
if (!transformPointCloud("map", cloud_msg, input_transformed_cloud_ptr.get())) {
229229
RCLCPP_ERROR_STREAM_THROTTLE(
230230
this->get_logger(), *this->get_clock(), std::chrono::milliseconds(10000).count(),
231-
"Failed transform from " << "map"
232-
<< " to " << cloud_msg->header.frame_id);
231+
"Failed transform from "
232+
<< "map"
233+
<< " to " << cloud_msg->header.frame_id);
233234
return;
234235
}
235236
pcl::PointCloud<pcl::PointXYZ>::Ptr cloud(new pcl::PointCloud<pcl::PointXYZ>);

0 commit comments

Comments
 (0)