mirror of https://github.com/ArduPilot/ardupilot
AP_HAL: include stdbool.h for ARM build
This commit is contained in:
parent
4764a03aaa
commit
d3f154bbae
|
@ -2,6 +2,9 @@
|
|||
#ifndef __AP_HAL_H__
|
||||
#define __AP_HAL_H__
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
#include "AP_HAL_Namespace.h"
|
||||
#include "AP_HAL_Boards.h"
|
||||
|
||||
|
|
|
@ -2,8 +2,6 @@
|
|||
#ifndef __AP_HAL_NAMESPACE_H__
|
||||
#define __AP_HAL_NAMESPACE_H__
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
namespace AP_HAL {
|
||||
|
||||
/* Toplevel pure virtual class Hal.*/
|
||||
|
|
Loading…
Reference in New Issue