AP_HAL: Scheduler: reorder includes

Follow the following order for includes:

   - Corresponding header file (if exists)
   - System headers
   - Other ArduPilot library headers
   - "Local" headers (from the same library)
This commit is contained in:
Lucas De Marchi 2015-10-22 13:03:11 -02:00 committed by Andrew Tridgell
parent 55ac8f0230
commit 0b4aa5ac85

View File

@ -2,12 +2,14 @@
#ifndef __AP_HAL_SCHEDULER_H__
#define __AP_HAL_SCHEDULER_H__
#include "AP_HAL_Namespace.h"
#include "AP_HAL_Boards.h"
#include <stdint.h>
#include <AP_Progmem/AP_Progmem.h>
#include "AP_HAL_Boards.h"
#include "AP_HAL_Namespace.h"
class AP_HAL::Scheduler {
public:
Scheduler() {}