mirror of https://github.com/ArduPilot/ardupilot
AP_Common: tidy includes
This commit is contained in:
parent
24f7369760
commit
f1069023ee
|
@ -18,6 +18,8 @@
|
|||
|
||||
#include "ExpandingString.h"
|
||||
|
||||
#include <AP_HAL/AP_HAL.h>
|
||||
|
||||
extern const AP_HAL::HAL& hal;
|
||||
|
||||
#define EXPAND_INCREMENT 512
|
||||
|
|
|
@ -18,7 +18,9 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <AP_HAL/AP_HAL.h>
|
||||
#include <AP_Common/AP_Common.h>
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
class ExpandingString {
|
||||
public:
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
#include <AP_gtest.h>
|
||||
#include <AP_Common/ExpandingString.h>
|
||||
#include <AP_HAL/AP_HAL.h>
|
||||
|
||||
const AP_HAL::HAL& hal = AP_HAL::get_HAL();
|
||||
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#include <AP_gtest.h>
|
||||
#include <stdlib.h>
|
||||
#include <AP_Common/ExpandingString.h>
|
||||
#include <AP_HAL/AP_HAL.h>
|
||||
|
||||
/**
|
||||
* This file test realloc failure on ExpandingString
|
||||
|
|
Loading…
Reference in New Issue