From dcb426ca25d245337b3afe72b6691c083295bb83 Mon Sep 17 00:00:00 2001 From: shoufei <907575489@qq.com> Date: Tue, 14 Jun 2022 04:34:19 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20wrong=20input=20type=20in=20navigate=5Ft?= =?UTF-8?q?o=5Fpose=5Faction.hpp=20and=20navigate=5Fto=5F=E2=80=A6=20(#299?= =?UTF-8?q?4)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix: wrong input type in navigate_to_pose_action.hpp and navigate_to_pose_action.hpp * Update navigate_through_poses_action.hpp Co-authored-by: Steve Macenski --- .../plugins/action/navigate_through_poses_action.hpp | 2 +- .../plugins/action/navigate_to_pose_action.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nav2_behavior_tree/include/nav2_behavior_tree/plugins/action/navigate_through_poses_action.hpp b/nav2_behavior_tree/include/nav2_behavior_tree/plugins/action/navigate_through_poses_action.hpp index 5234dedaec..7e7f3d5c30 100644 --- a/nav2_behavior_tree/include/nav2_behavior_tree/plugins/action/navigate_through_poses_action.hpp +++ b/nav2_behavior_tree/include/nav2_behavior_tree/plugins/action/navigate_through_poses_action.hpp @@ -56,7 +56,7 @@ class NavigateThroughPosesAction : public BtActionNode("goals", "Destinations to plan through"), - BT::InputPort("behavior_tree", "Behavior tree to run"), + BT::InputPort("behavior_tree", "Behavior tree to run"), }); } }; diff --git a/nav2_behavior_tree/include/nav2_behavior_tree/plugins/action/navigate_to_pose_action.hpp b/nav2_behavior_tree/include/nav2_behavior_tree/plugins/action/navigate_to_pose_action.hpp index e8c37af738..3708017f16 100644 --- a/nav2_behavior_tree/include/nav2_behavior_tree/plugins/action/navigate_to_pose_action.hpp +++ b/nav2_behavior_tree/include/nav2_behavior_tree/plugins/action/navigate_to_pose_action.hpp @@ -56,7 +56,7 @@ class NavigateToPoseAction : public BtActionNode("goal", "Destination to plan to"), - BT::InputPort("behavior_tree", "Behavior tree to run"), + BT::InputPort("behavior_tree", "Behavior tree to run"), }); } };