From bffc7c2573e72977e7670ba7d7e34fa999956e0b Mon Sep 17 00:00:00 2001 From: Go Sakayori Date: Fri, 7 Jun 2024 14:56:25 +0900 Subject: [PATCH] fix include guard Signed-off-by: Go Sakayori --- control/autoware_vehicle_cmd_gate/src/vehicle_cmd_gate.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/control/autoware_vehicle_cmd_gate/src/vehicle_cmd_gate.hpp b/control/autoware_vehicle_cmd_gate/src/vehicle_cmd_gate.hpp index 415ed82e4d16a..22613de5d1f07 100644 --- a/control/autoware_vehicle_cmd_gate/src/vehicle_cmd_gate.hpp +++ b/control/autoware_vehicle_cmd_gate/src/vehicle_cmd_gate.hpp @@ -12,8 +12,8 @@ // See the License for the specific language governing permissions and // limitations under the License. -#ifndef AUTOWARE_VEHICLE_CMD_GATE_HPP_ -#define AUTOWARE_VEHICLE_CMD_GATE_HPP_ +#ifndef VEHICLE_CMD_GATE_HPP_ +#define VEHICLE_CMD_GATE_HPP_ #include "adapi_pause_interface.hpp" #include "moderate_stop_interface.hpp" @@ -258,4 +258,4 @@ class VehicleCmdGate : public rclcpp::Node }; } // namespace autoware::vehicle_cmd_gate -#endif // AUTOWARE_VEHICLE_CMD_GATE_HPP_ +#endif // VEHICLE_CMD_GATE_HPP_