Skip to content

Commit

Permalink
style(pre-commit): autofix
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] authored and esteve committed Jun 24, 2024
1 parent 6618062 commit 136ffd6
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef OBSTACLE_STOP_PLANNER__ADAPTIVE_CRUISE_CONTROL_HPP_
#define OBSTACLE_STOP_PLANNER__ADAPTIVE_CRUISE_CONTROL_HPP_
#ifndef ADAPTIVE_CRUISE_CONTROL_HPP_
#define ADAPTIVE_CRUISE_CONTROL_HPP_

#include <rclcpp/rclcpp.hpp>

Expand Down Expand Up @@ -234,4 +234,4 @@ class AdaptiveCruiseController

} // namespace autoware::motion_planning

#endif // OBSTACLE_STOP_PLANNER__ADAPTIVE_CRUISE_CONTROL_HPP_
#endif // ADAPTIVE_CRUISE_CONTROL_HPP_
6 changes: 3 additions & 3 deletions planning/autoware_obstacle_stop_planner/src/debug_marker.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef OBSTACLE_STOP_PLANNER__DEBUG_MARKER_HPP_
#define OBSTACLE_STOP_PLANNER__DEBUG_MARKER_HPP_
#ifndef DEBUG_MARKER_HPP_
#define DEBUG_MARKER_HPP_

#include <rclcpp/rclcpp.hpp>

Expand Down Expand Up @@ -156,4 +156,4 @@ class ObstacleStopPlannerDebugNode

} // namespace autoware::motion_planning

#endif // OBSTACLE_STOP_PLANNER__DEBUG_MARKER_HPP_
#endif // DEBUG_MARKER_HPP_
8 changes: 4 additions & 4 deletions planning/autoware_obstacle_stop_planner/src/node.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef OBSTACLE_STOP_PLANNER__NODE_HPP_
#define OBSTACLE_STOP_PLANNER__NODE_HPP_
#ifndef NODE_HPP_
#define NODE_HPP_

#include "adaptive_cruise_control.hpp"
#include "autoware/universe_utils/ros/logger_level_configure.hpp"
#include "autoware/universe_utils/system/stop_watch.hpp"
#include "adaptive_cruise_control.hpp"
#include "debug_marker.hpp"
#include "planner_data.hpp"

Expand Down Expand Up @@ -321,4 +321,4 @@ class ObstacleStopPlannerNode : public rclcpp::Node
};
} // namespace autoware::motion_planning

#endif // OBSTACLE_STOP_PLANNER__NODE_HPP_
#endif // NODE_HPP_
6 changes: 3 additions & 3 deletions planning/autoware_obstacle_stop_planner/src/planner_data.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef OBSTACLE_STOP_PLANNER__PLANNER_DATA_HPP_
#define OBSTACLE_STOP_PLANNER__PLANNER_DATA_HPP_
#ifndef PLANNER_DATA_HPP_
#define PLANNER_DATA_HPP_

#include <rclcpp/rclcpp.hpp>

Expand Down Expand Up @@ -284,4 +284,4 @@ struct PlannerData

} // namespace autoware::motion_planning

#endif // OBSTACLE_STOP_PLANNER__PLANNER_DATA_HPP_
#endif // PLANNER_DATA_HPP_
6 changes: 3 additions & 3 deletions planning/autoware_obstacle_stop_planner/src/planner_utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef OBSTACLE_STOP_PLANNER__PLANNER_UTILS_HPP_
#define OBSTACLE_STOP_PLANNER__PLANNER_UTILS_HPP_
#ifndef PLANNER_UTILS_HPP_
#define PLANNER_UTILS_HPP_

#include "planner_data.hpp"

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

} // namespace autoware::motion_planning

#endif // OBSTACLE_STOP_PLANNER__PLANNER_UTILS_HPP_
#endif // PLANNER_UTILS_HPP_
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@

#include <vector>

using autoware::planning_test_manager::PlanningInterfaceTestManager;
using autoware::motion_planning::ObstacleStopPlannerNode;
using autoware::planning_test_manager::PlanningInterfaceTestManager;

std::shared_ptr<PlanningInterfaceTestManager> generateTestManager()
{
Expand Down

0 comments on commit 136ffd6

Please sign in to comment.