Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(autoware_internal_planning_msgs): fix PathPoint type error cause by duplicate definition in repo autoware_msgs and autoware_internal_msgs #46

Merged
merged 2 commits into from
Jan 19, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion autoware_internal_planning_msgs/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ find_package(ament_cmake_auto REQUIRED)
ament_auto_find_build_dependencies()

rosidl_generate_interfaces(${PROJECT_NAME}
"msg/PathPoint.msg"
"msg/PathPointWithLaneId.msg"
"msg/PathWithLaneId.msg"
"msg/Scenario.msg"
DEPENDENCIES
builtin_interfaces
geometry_msgs
std_msgs
autoware_planning_msgs
)

if(BUILD_TESTING)
Expand Down
5 changes: 0 additions & 5 deletions autoware_internal_planning_msgs/msg/PathPoint.msg

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
autoware_internal_planning_msgs/PathPoint point
autoware_planning_msgs/PathPoint point
int64[] lane_ids
1 change: 1 addition & 0 deletions autoware_internal_planning_msgs/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

<exec_depend>rosidl_default_runtime</exec_depend>

<depend>autoware_planning_msgs</depend>
<depend>builtin_interfaces</depend>
<depend>geometry_msgs</depend>
<depend>std_msgs</depend>
Expand Down