AP_Parachute: replace header guard with pragma once

This commit is contained in:
Lucas De Marchi 2016-02-17 23:25:43 -02:00 committed by Andrew Tridgell
parent 5518cb2b01
commit b180f3a83f

View File

@ -2,9 +2,7 @@
/// @file AP_Parachute.h /// @file AP_Parachute.h
/// @brief Parachute release library /// @brief Parachute release library
#pragma once
#ifndef AP_PARACHUTE_H
#define AP_PARACHUTE_H
#include <AP_Param/AP_Param.h> #include <AP_Param/AP_Param.h>
#include <AP_Common/AP_Common.h> #include <AP_Common/AP_Common.h>
@ -75,5 +73,3 @@ private:
bool _release_in_progress:1; // true if the parachute release is in progress bool _release_in_progress:1; // true if the parachute release is in progress
bool _released:1; // true if the parachute has been released bool _released:1; // true if the parachute has been released
}; };
#endif /* AP_PARACHUTE_H */