Skip to content

Commit

Permalink
fix: use correct PluginInterface namespace
Browse files Browse the repository at this point in the history
Signed-off-by: Esteve Fernandez <[email protected]>
  • Loading branch information
esteve committed May 21, 2024
1 parent a3e776d commit eedd133
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ diagnostic_msgs::msg::DiagnosticStatus makeStopReasonDiag(

BehaviorVelocityPlannerManager::BehaviorVelocityPlannerManager()
: plugin_loader_(
"autoware_behavior_velocity_planner", "autoware::behavior_velocity_planner::PluginInterface")
"autoware_behavior_velocity_planner", "behavior_velocity_planner::PluginInterface")
{
}

Expand Down Expand Up @@ -83,7 +83,7 @@ void BehaviorVelocityPlannerManager::removeScenePlugin(
{
auto it = std::remove_if(
scene_manager_plugins_.begin(), scene_manager_plugins_.end(),
[&](const std::shared_ptr<autoware::behavior_velocity_planner::PluginInterface> & plugin) {
[&](const std::shared_ptr<behavior_velocity_planner::PluginInterface> & plugin) {
return plugin->getModuleName() == name;
});

Expand Down

0 comments on commit eedd133

Please sign in to comment.