mirror of https://github.com/ArduPilot/ardupilot
AP_Rally: replace header guard with pragma once
This commit is contained in:
parent
b180f3a83f
commit
f908dffbeb
|
@ -14,8 +14,7 @@
|
||||||
* - provides access to the rally points, including logic to find the nearest one
|
* - provides access to the rally points, including logic to find the nearest one
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
#ifndef AP_Rally_h
|
#pragma once
|
||||||
#define AP_Rally_h
|
|
||||||
|
|
||||||
#include <AP_Common/AP_Common.h>
|
#include <AP_Common/AP_Common.h>
|
||||||
#include <AP_Param/AP_Param.h>
|
#include <AP_Param/AP_Param.h>
|
||||||
|
@ -75,6 +74,3 @@ private:
|
||||||
|
|
||||||
uint32_t _last_change_time_ms;
|
uint32_t _last_change_time_ms;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
#endif // AP_Rally_h
|
|
||||||
|
|
Loading…
Reference in New Issue