Skip to content

Commit 4af9b99

Browse files
Fix pre-commit issues
Signed-off-by: Simon Eisenmann <simon.eisenmann@driveblocks.ai>
1 parent b431760 commit 4af9b99

File tree

5 files changed

+3
-11
lines changed

5 files changed

+3
-11
lines changed

planning/mapless_architecture/autoware_local_mission_planner/include/autoware/local_mission_planner/mission_planner_node.hpp

-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929

3030
namespace autoware::mapless_architecture
3131
{
32-
using namespace lib_mission_planner;
3332

3433
// Create Direction data type
3534
typedef int Direction;

planning/mapless_architecture/autoware_local_mission_planner/src/mission_planner_node.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
namespace autoware::mapless_architecture
3131
{
3232
using std::placeholders::_1;
33-
using namespace lib_mission_planner;
3433

3534
MissionPlannerNode::MissionPlannerNode() : Node("mission_planner_node")
3635
{

planning/mapless_architecture/autoware_local_mission_planner_common/include/autoware/local_mission_planner_common/helper_functions.hpp

+1-3
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,11 @@
1414
#include "geometry_msgs/msg/point.hpp"
1515
#include "geometry_msgs/msg/pose.hpp"
1616

17+
#include <tuple>
1718
#include <vector>
1819

1920
namespace autoware::mapless_architecture
2021
{
21-
namespace lib_mission_planner
22-
{
2322

2423
/**
2524
* @brief A class for a 2D pose.
@@ -277,7 +276,6 @@ int FindOccupiedLaneletID(
277276
*/
278277
int FindEgoOccupiedLaneletID(const std::vector<lanelet::Lanelet> & lanelets);
279278

280-
} // namespace lib_mission_planner
281279
} // namespace autoware::mapless_architecture
282280

283281
#endif // AUTOWARE__LOCAL_MISSION_PLANNER_COMMON__HELPER_FUNCTIONS_HPP_

planning/mapless_architecture/autoware_local_mission_planner_common/src/helper_functions.cpp

-4
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace autoware::mapless_architecture
1212
{
13-
namespace lib_mission_planner
14-
{
1513

1614
double NormalizePsi(const double psi)
1715
{
@@ -442,6 +440,4 @@ int FindEgoOccupiedLaneletID(const std::vector<lanelet::Lanelet> & lanelets)
442440
return FindOccupiedLaneletID(lanelets, position_ego);
443441
}
444442

445-
} // namespace lib_mission_planner
446-
447443
} // namespace autoware::mapless_architecture

planning/mapless_architecture/autoware_mission_lane_converter/src/mission_lane_converter_node.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
namespace autoware::mapless_architecture
2020
{
2121
using std::placeholders::_1;
22-
using namespace lib_mission_planner;
2322

2423
MissionLaneConverterNode::MissionLaneConverterNode() : Node("mission_lane_converter_node")
2524
{
@@ -453,7 +452,8 @@ void MissionLaneConverterNode::AddHeadingToTrajectory_(
453452
return;
454453
}
455454

456-
// TODO: store the latest odometry message here and then re-use in the output conversion
455+
// TODO(thomas.herrmann@driveblocks.ai): store the latest odometry message here and then re-use in
456+
// the output conversion
457457
void MissionLaneConverterNode::CallbackOdometryMessages_(const nav_msgs::msg::Odometry & msg)
458458
{
459459
// store current odometry information

0 commit comments

Comments
 (0)