Skip to content

Commit a2d7c53

Browse files
pre-commit-ci[bot]esteve
authored andcommitted
style(pre-commit): autofix
1 parent 49c3020 commit a2d7c53

7 files changed

+20
-20
lines changed

planning/static_centerline_generator/src/centerline_source/bag_ego_trajectory_based_centerline.hpp

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

15-
#ifndef STATIC_CENTERLINE_GENERATOR__CENTERLINE_SOURCE__BAG_EGO_TRAJECTORY_BASED_CENTERLINE_HPP_
16-
#define STATIC_CENTERLINE_GENERATOR__CENTERLINE_SOURCE__BAG_EGO_TRAJECTORY_BASED_CENTERLINE_HPP_
15+
#ifndef CENTERLINE_SOURCE__BAG_EGO_TRAJECTORY_BASED_CENTERLINE_HPP_
16+
#define CENTERLINE_SOURCE__BAG_EGO_TRAJECTORY_BASED_CENTERLINE_HPP_
1717

1818
#include "rclcpp/rclcpp.hpp"
1919
#include "type_alias.hpp"
@@ -24,4 +24,4 @@ namespace autoware::static_centerline_generator
2424
{
2525
std::vector<TrajectoryPoint> generate_centerline_with_bag(rclcpp::Node & node);
2626
} // namespace autoware::static_centerline_generator
27-
#endif // STATIC_CENTERLINE_GENERATOR__CENTERLINE_SOURCE__BAG_EGO_TRAJECTORY_BASED_CENTERLINE_HPP_
27+
#endif // CENTERLINE_SOURCE__BAG_EGO_TRAJECTORY_BASED_CENTERLINE_HPP_

planning/static_centerline_generator/src/centerline_source/optimization_trajectory_based_centerline.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
#include "obstacle_avoidance_planner/node.hpp"
2020
#include "path_smoother/elastic_band_smoother.hpp"
2121
#include "static_centerline_generator_node.hpp"
22-
#include "utils.hpp"
2322
#include "tier4_autoware_utils/ros/parameter.hpp"
23+
#include "utils.hpp"
2424

2525
namespace autoware::static_centerline_generator
2626
{

planning/static_centerline_generator/src/centerline_source/optimization_trajectory_based_centerline.hpp

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

15-
#ifndef STATIC_CENTERLINE_GENERATOR__CENTERLINE_SOURCE__OPTIMIZATION_TRAJECTORY_BASED_CENTERLINE_HPP_ // NOLINT
16-
#define STATIC_CENTERLINE_GENERATOR__CENTERLINE_SOURCE__OPTIMIZATION_TRAJECTORY_BASED_CENTERLINE_HPP_ // NOLINT
15+
#ifndef CENTERLINE_SOURCE__OPTIMIZATION_TRAJECTORY_BASED_CENTERLINE_HPP_ // NOLINT
16+
#define CENTERLINE_SOURCE__OPTIMIZATION_TRAJECTORY_BASED_CENTERLINE_HPP_ // NOLINT
1717

1818
#include "rclcpp/rclcpp.hpp"
1919
#include "type_alias.hpp"
@@ -39,5 +39,5 @@ class OptimizationTrajectoryBasedCenterline
3939
};
4040
} // namespace autoware::static_centerline_generator
4141
// clang-format off
42-
#endif // STATIC_CENTERLINE_GENERATOR__CENTERLINE_SOURCE__OPTIMIZATION_TRAJECTORY_BASED_CENTERLINE_HPP_ // NOLINT
42+
#endif // CENTERLINE_SOURCE__OPTIMIZATION_TRAJECTORY_BASED_CENTERLINE_HPP_ // NOLINT
4343
// clang-format on

planning/static_centerline_generator/src/static_centerline_generator_node.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,18 @@
1515
#include "static_centerline_generator_node.hpp"
1616

1717
#include "autoware_static_centerline_generator/msg/points_with_lane_id.hpp"
18+
#include "centerline_source/bag_ego_trajectory_based_centerline.hpp"
1819
#include "lanelet2_extension/utility/message_conversion.hpp"
1920
#include "lanelet2_extension/utility/query.hpp"
2021
#include "lanelet2_extension/utility/utilities.hpp"
2122
#include "map_loader/lanelet2_map_loader_node.hpp"
2223
#include "map_projection_loader/load_info_from_lanelet2_map.hpp"
2324
#include "motion_utils/resample/resample.hpp"
2425
#include "motion_utils/trajectory/conversion.hpp"
25-
#include "centerline_source/bag_ego_trajectory_based_centerline.hpp"
26-
#include "type_alias.hpp"
27-
#include "utils.hpp"
2826
#include "tier4_autoware_utils/geometry/geometry.hpp"
2927
#include "tier4_autoware_utils/ros/parameter.hpp"
28+
#include "type_alias.hpp"
29+
#include "utils.hpp"
3030

3131
#include <geography_utils/lanelet2_projector.hpp>
3232
#include <mission_planner/mission_planner_plugin.hpp>

planning/static_centerline_generator/src/static_centerline_generator_node.hpp

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

15-
#ifndef STATIC_CENTERLINE_GENERATOR__STATIC_CENTERLINE_GENERATOR_NODE_HPP_
16-
#define STATIC_CENTERLINE_GENERATOR__STATIC_CENTERLINE_GENERATOR_NODE_HPP_
15+
#ifndef STATIC_CENTERLINE_GENERATOR_NODE_HPP_
16+
#define STATIC_CENTERLINE_GENERATOR_NODE_HPP_
1717

1818
#include "autoware_static_centerline_generator/srv/load_map.hpp"
1919
#include "autoware_static_centerline_generator/srv/plan_path.hpp"
2020
#include "autoware_static_centerline_generator/srv/plan_route.hpp"
21-
#include "rclcpp/rclcpp.hpp"
2221
#include "centerline_source/optimization_trajectory_based_centerline.hpp"
22+
#include "rclcpp/rclcpp.hpp"
2323
#include "type_alias.hpp"
2424
#include "vehicle_info_util/vehicle_info_util.hpp"
2525

@@ -116,4 +116,4 @@ class StaticCenterlineGeneratorNode : public rclcpp::Node
116116
vehicle_info_util::VehicleInfo vehicle_info_;
117117
};
118118
} // namespace autoware::static_centerline_generator
119-
#endif // STATIC_CENTERLINE_GENERATOR__STATIC_CENTERLINE_GENERATOR_NODE_HPP_
119+
#endif // STATIC_CENTERLINE_GENERATOR_NODE_HPP_

planning/static_centerline_generator/src/type_alias.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
14-
#ifndef STATIC_CENTERLINE_GENERATOR__TYPE_ALIAS_HPP_
15-
#define STATIC_CENTERLINE_GENERATOR__TYPE_ALIAS_HPP_
14+
#ifndef TYPE_ALIAS_HPP_
15+
#define TYPE_ALIAS_HPP_
1616

1717
#include "route_handler/route_handler.hpp"
1818
#include "tier4_autoware_utils/geometry/geometry.hpp"
@@ -43,4 +43,4 @@ using tier4_autoware_utils::Point2d;
4343
using visualization_msgs::msg::MarkerArray;
4444
} // namespace autoware::static_centerline_generator
4545

46-
#endif // STATIC_CENTERLINE_GENERATOR__TYPE_ALIAS_HPP_
46+
#endif // TYPE_ALIAS_HPP_

planning/static_centerline_generator/src/utils.hpp

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

15-
#ifndef STATIC_CENTERLINE_GENERATOR__UTILS_HPP_
16-
#define STATIC_CENTERLINE_GENERATOR__UTILS_HPP_
15+
#ifndef UTILS_HPP_
16+
#define UTILS_HPP_
1717

1818
#include "route_handler/route_handler.hpp"
1919
#include "type_alias.hpp"
@@ -55,4 +55,4 @@ MarkerArray create_distance_text_marker(
5555
} // namespace utils
5656
} // namespace autoware::static_centerline_generator
5757

58-
#endif // STATIC_CENTERLINE_GENERATOR__UTILS_HPP_
58+
#endif // UTILS_HPP_

0 commit comments

Comments
 (0)