Skip to content

Commit 435bc50

Browse files
committed
Fix error message
Signed-off-by: anhnv3991 <anh.nguyen.2@tier4.jp>
2 parents 0a07753 + 024b72e commit 435bc50

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

localization/ndt_scan_matcher/src/map_update_module.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
#include "ndt_scan_matcher/map_update_module.hpp"
1616

1717
MapUpdateModule::MapUpdateModule(
18-
rclcpp::Node * node, std::mutex * ndt_ptr_mutex,
19-
NdtPtrType & ndt_ptr, HyperParameters::DynamicMapLoading param)
18+
rclcpp::Node * node, std::mutex * ndt_ptr_mutex, NdtPtrType & ndt_ptr,
19+
HyperParameters::DynamicMapLoading param)
2020
: ndt_ptr_(ndt_ptr),
2121
ndt_ptr_mutex_(ndt_ptr_mutex),
2222
logger_(node->get_logger()),
@@ -133,8 +133,8 @@ void MapUpdateModule::update_ndt(const geometry_msgs::msg::Point & position, Ndt
133133
status = result.wait_for(std::chrono::seconds(1));
134134
}
135135

136-
auto& maps_to_add = result.get()->new_pointcloud_with_ids;
137-
auto& map_ids_to_remove = result.get()->ids_to_remove;
136+
auto & maps_to_add = result.get()->new_pointcloud_with_ids;
137+
auto & map_ids_to_remove = result.get()->ids_to_remove;
138138

139139
RCLCPP_INFO(
140140
logger_, "Update map (Add: %lu, Remove: %lu)", maps_to_add.size(), map_ids_to_remove.size());

sensing/pointcloud_preprocessor/package.xml

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
<maintainer email="abrahammonrroy@yahoo.com">amc-nu</maintainer>
88
<maintainer email="yukihiro.saito@tier4.jp">Yukihiro Saito</maintainer>
99
<maintainer email="shunsuke.miura@tier4.jp">Shunsuke Miura</maintainer>
10+
<maintainer email="kyoichi.sugahara@tier4.jp">Kyoichi Sugahara</maintainer>
1011
<license>Apache License 2.0</license>
1112

1213
<!-- Original authors -->

0 commit comments

Comments
 (0)