AP_Mission: replace header guard with pragma once

This commit is contained in:
Lucas De Marchi 2016-02-17 23:25:36 -02:00 committed by Andrew Tridgell
parent 9c4f93244e
commit 2790c16905
1 changed files with 1 additions and 4 deletions

View File

@ -12,8 +12,7 @@
* - accounts for the DO_JUMP command
*
*/
#ifndef AP_Mission_h
#define AP_Mission_h
#pragma once
#include <AP_HAL/AP_HAL.h>
#include <AP_Vehicle/AP_Vehicle.h>
@ -467,5 +466,3 @@ private:
// last time that mission changed
uint32_t _last_change_time_ms;
};
#endif