Skip to content
This repository has been archived by the owner on Jul 1, 2024. It is now read-only.

Commit

Permalink
po
Browse files Browse the repository at this point in the history
  • Loading branch information
takayuki5168 committed Jun 16, 2024
1 parent d045e04 commit 4ebd7c9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tmp/lanelet2_extension_python/src/utility.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@ bool isInLanelet(
serialized_msg.reserve(message_header_length + pose_byte.size());
serialized_msg.get_rcl_serialized_message().buffer_length = pose_byte.size();
for (size_t i = 0; i < pose_byte.size(); ++i) {
serialized_msg.get_rcl_serialized_message().buffer[i] = pose_byte[i];
// TODO(someone): remove the following NONLINT which was added temporarily

Check warning on line 101 in tmp/lanelet2_extension_python/src/utility.cpp

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (NONLINT)
serialized_msg.get_rcl_serialized_message().buffer[i] = pose_byte[i]; // NOLINT
}
geometry_msgs::msg::Pose pose;
static rclcpp::Serialization<geometry_msgs::msg::Pose> serializer;
Expand Down

0 comments on commit 4ebd7c9

Please sign in to comment.