Skip to content

Commit

Permalink
fix incorrect type
Browse files Browse the repository at this point in the history
Signed-off-by: David Brown <[email protected]>
  • Loading branch information
david-wb committed Dec 6, 2024
1 parent e482156 commit 423dea8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nav2_behavior_tree/plugins/action/back_up_action.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ void nav2_behavior_tree::BackUpAction::initialize()
getInput("backup_speed", speed);
double time_allowance;
getInput("time_allowance", time_allowance);
double disable_collision_checks;
bool disable_collision_checks;
getInput("disable_collision_checks", disable_collision_checks);

// Populate the input message
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ void DriveOnHeadingAction::initialize()
getInput("speed", speed);
double time_allowance;
getInput("time_allowance", time_allowance);
double disable_collision_checks;
bool disable_collision_checks;
getInput("disable_collision_checks", disable_collision_checks);

// Populate the input message
Expand Down

0 comments on commit 423dea8

Please sign in to comment.