From 83f11145d5859a337c412b246649e6bb81aa9a58 Mon Sep 17 00:00:00 2001 From: Lucas De Marchi Date: Wed, 17 Feb 2016 23:25:32 -0200 Subject: [PATCH] AP_LandingGear: replace header guard with pragma once --- libraries/AP_LandingGear/AP_LandingGear.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/libraries/AP_LandingGear/AP_LandingGear.h b/libraries/AP_LandingGear/AP_LandingGear.h index aa433c0ce2..091189ea04 100644 --- a/libraries/AP_LandingGear/AP_LandingGear.h +++ b/libraries/AP_LandingGear/AP_LandingGear.h @@ -2,9 +2,7 @@ /// @file AP_LandingGear.h /// @brief Landing gear control library - -#ifndef AP_LANDINGGEAR_H -#define AP_LANDINGGEAR_H +#pragma once #include #include @@ -75,5 +73,3 @@ private: /// deploy - deploy the landing gear void deploy(); }; - -#endif /* AP_LANDINGGEAR_H */