Skip to content

Commit eedd133

Browse files
committed
fix: use correct PluginInterface namespace
Signed-off-by: Esteve Fernandez <esteve.fernandez@tier4.jp>
1 parent a3e776d commit eedd133

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

planning/autoware_behavior_velocity_planner/src/planner_manager.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ diagnostic_msgs::msg::DiagnosticStatus makeStopReasonDiag(
5151

5252
BehaviorVelocityPlannerManager::BehaviorVelocityPlannerManager()
5353
: plugin_loader_(
54-
"autoware_behavior_velocity_planner", "autoware::behavior_velocity_planner::PluginInterface")
54+
"autoware_behavior_velocity_planner", "behavior_velocity_planner::PluginInterface")
5555
{
5656
}
5757

@@ -83,7 +83,7 @@ void BehaviorVelocityPlannerManager::removeScenePlugin(
8383
{
8484
auto it = std::remove_if(
8585
scene_manager_plugins_.begin(), scene_manager_plugins_.end(),
86-
[&](const std::shared_ptr<autoware::behavior_velocity_planner::PluginInterface> & plugin) {
86+
[&](const std::shared_ptr<behavior_velocity_planner::PluginInterface> & plugin) {
8787
return plugin->getModuleName() == name;
8888
});
8989

0 commit comments

Comments
 (0)