Skip to content

Commit bde2856

Browse files
committed
refactor(autoware_behavior_path_avoidance_by_lane_change_module): fix include paths
Signed-off-by: Esteve Fernandez <esteve.fernandez@tier4.jp>
1 parent 959fb45 commit bde2856

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

planning/autoware_behavior_path_avoidance_by_lane_change_module/src/interface.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "behavior_path_avoidance_by_lane_change_module/interface.hpp"
15+
#include "interface.hpp"
1616

1717
#include "behavior_path_planner_common/interface/scene_module_interface.hpp"
1818
#include "behavior_path_planner_common/interface/scene_module_visitor.hpp"

planning/autoware_behavior_path_avoidance_by_lane_change_module/src/interface.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
#ifndef BEHAVIOR_PATH_AVOIDANCE_BY_LANE_CHANGE_MODULE__INTERFACE_HPP_
1616
#define BEHAVIOR_PATH_AVOIDANCE_BY_LANE_CHANGE_MODULE__INTERFACE_HPP_
1717

18-
#include "behavior_path_avoidance_by_lane_change_module/data_structs.hpp"
19-
#include "behavior_path_avoidance_by_lane_change_module/scene.hpp"
18+
#include "data_structs.hpp"
19+
#include "scene.hpp"
2020
#include "behavior_path_lane_change_module/interface.hpp"
2121

2222
#include <rclcpp/rclcpp.hpp>

planning/autoware_behavior_path_avoidance_by_lane_change_module/src/manager.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "behavior_path_avoidance_by_lane_change_module/manager.hpp"
15+
#include "manager.hpp"
1616

17-
#include "behavior_path_avoidance_by_lane_change_module/data_structs.hpp"
17+
#include "data_structs.hpp"
1818
#include "behavior_path_avoidance_module/parameter_helper.hpp"
1919
#include "tier4_autoware_utils/ros/parameter.hpp"
2020
#include "tier4_autoware_utils/ros/update_param.hpp"

planning/autoware_behavior_path_avoidance_by_lane_change_module/src/manager.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
#ifndef BEHAVIOR_PATH_AVOIDANCE_BY_LANE_CHANGE_MODULE__MANAGER_HPP_
1616
#define BEHAVIOR_PATH_AVOIDANCE_BY_LANE_CHANGE_MODULE__MANAGER_HPP_
1717

18-
#include "behavior_path_avoidance_by_lane_change_module/data_structs.hpp"
19-
#include "behavior_path_avoidance_by_lane_change_module/interface.hpp"
18+
#include "data_structs.hpp"
19+
#include "interface.hpp"
2020
#include "behavior_path_lane_change_module/manager.hpp"
2121

2222
#include <rclcpp/rclcpp.hpp>

planning/autoware_behavior_path_avoidance_by_lane_change_module/src/scene.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "behavior_path_avoidance_by_lane_change_module/scene.hpp"
15+
#include "scene.hpp"
1616

1717
#include "behavior_path_avoidance_module/utils.hpp"
1818
#include "behavior_path_planner_common/utils/drivable_area_expansion/static_drivable_area.hpp"

planning/autoware_behavior_path_avoidance_by_lane_change_module/src/scene.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#ifndef BEHAVIOR_PATH_AVOIDANCE_BY_LANE_CHANGE_MODULE__SCENE_HPP_
1616
#define BEHAVIOR_PATH_AVOIDANCE_BY_LANE_CHANGE_MODULE__SCENE_HPP_
1717

18-
#include "behavior_path_avoidance_by_lane_change_module/data_structs.hpp"
18+
#include "data_structs.hpp"
1919
#include "behavior_path_avoidance_module/helper.hpp"
2020
#include "behavior_path_lane_change_module/scene.hpp"
2121

0 commit comments

Comments
 (0)