Skip to content

Commit c25119a

Browse files
style(pre-commit): autofix
1 parent 6e33868 commit c25119a

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

Diff for: planning/autoware_obstacle_stop_planner/src/adaptive_cruise_control.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 OBSTACLE_STOP_PLANNER__ADAPTIVE_CRUISE_CONTROL_HPP_
16-
#define OBSTACLE_STOP_PLANNER__ADAPTIVE_CRUISE_CONTROL_HPP_
15+
#ifndef ADAPTIVE_CRUISE_CONTROL_HPP_
16+
#define ADAPTIVE_CRUISE_CONTROL_HPP_
1717

1818
#include <rclcpp/rclcpp.hpp>
1919

@@ -234,4 +234,4 @@ class AdaptiveCruiseController
234234

235235
} // namespace autoware::motion_planning
236236

237-
#endif // OBSTACLE_STOP_PLANNER__ADAPTIVE_CRUISE_CONTROL_HPP_
237+
#endif // ADAPTIVE_CRUISE_CONTROL_HPP_

Diff for: planning/autoware_obstacle_stop_planner/src/debug_marker.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 OBSTACLE_STOP_PLANNER__DEBUG_MARKER_HPP_
15-
#define OBSTACLE_STOP_PLANNER__DEBUG_MARKER_HPP_
14+
#ifndef DEBUG_MARKER_HPP_
15+
#define DEBUG_MARKER_HPP_
1616

1717
#include <rclcpp/rclcpp.hpp>
1818

@@ -156,4 +156,4 @@ class ObstacleStopPlannerDebugNode
156156

157157
} // namespace autoware::motion_planning
158158

159-
#endif // OBSTACLE_STOP_PLANNER__DEBUG_MARKER_HPP_
159+
#endif // DEBUG_MARKER_HPP_

Diff for: planning/autoware_obstacle_stop_planner/src/node.hpp

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

15-
#ifndef OBSTACLE_STOP_PLANNER__NODE_HPP_
16-
#define OBSTACLE_STOP_PLANNER__NODE_HPP_
15+
#ifndef NODE_HPP_
16+
#define NODE_HPP_
1717

18+
#include "adaptive_cruise_control.hpp"
1819
#include "autoware/universe_utils/ros/logger_level_configure.hpp"
1920
#include "autoware/universe_utils/system/stop_watch.hpp"
20-
#include "adaptive_cruise_control.hpp"
2121
#include "debug_marker.hpp"
2222
#include "planner_data.hpp"
2323

@@ -321,4 +321,4 @@ class ObstacleStopPlannerNode : public rclcpp::Node
321321
};
322322
} // namespace autoware::motion_planning
323323

324-
#endif // OBSTACLE_STOP_PLANNER__NODE_HPP_
324+
#endif // NODE_HPP_

Diff for: planning/autoware_obstacle_stop_planner/src/planner_data.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 OBSTACLE_STOP_PLANNER__PLANNER_DATA_HPP_
16-
#define OBSTACLE_STOP_PLANNER__PLANNER_DATA_HPP_
15+
#ifndef PLANNER_DATA_HPP_
16+
#define PLANNER_DATA_HPP_
1717

1818
#include <rclcpp/rclcpp.hpp>
1919

@@ -284,4 +284,4 @@ struct PlannerData
284284

285285
} // namespace autoware::motion_planning
286286

287-
#endif // OBSTACLE_STOP_PLANNER__PLANNER_DATA_HPP_
287+
#endif // PLANNER_DATA_HPP_

Diff for: planning/autoware_obstacle_stop_planner/src/planner_utils.hpp

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

16-
#ifndef OBSTACLE_STOP_PLANNER__PLANNER_UTILS_HPP_
17-
#define OBSTACLE_STOP_PLANNER__PLANNER_UTILS_HPP_
16+
#ifndef PLANNER_UTILS_HPP_
17+
#define PLANNER_UTILS_HPP_
1818

1919
#include "planner_data.hpp"
2020

@@ -151,4 +151,4 @@ rclcpp::SubscriptionOptions createSubscriptionOptions(rclcpp::Node * node_ptr);
151151

152152
} // namespace autoware::motion_planning
153153

154-
#endif // OBSTACLE_STOP_PLANNER__PLANNER_UTILS_HPP_
154+
#endif // PLANNER_UTILS_HPP_

0 commit comments

Comments
 (0)