Removed unused includes and added missing stdint.h includes (#549)

This commit is contained in:
Tyler Veness
2017-06-25 09:05:49 -07:00
committed by Peter Johnson
parent 5fd996876b
commit 98a587a347
18 changed files with 22 additions and 19 deletions

View File

@@ -7,11 +7,9 @@
#pragma once
#include <memory>
#include <stdint.h>
#include "GyroBase.h"
#include "HAL/cpp/priority_mutex.h"
#include "Notifier.h"
#include "SPI.h"
namespace frc {

View File

@@ -7,6 +7,8 @@
#pragma once
#include <stdint.h>
#include <memory>
#include <string>

View File

@@ -7,8 +7,6 @@
#pragma once
#include <stdint.h>
#include <memory>
#include <string>

View File

@@ -7,6 +7,8 @@
#pragma once
#include <stdint.h>
#include "SpeedController.h"
namespace frc {

View File

@@ -7,6 +7,8 @@
#pragma once
#include <stdint.h>
#include <atomic>
#include <memory>
#include <mutex>

View File

@@ -7,8 +7,6 @@
#pragma once
#include <stdint.h>
namespace frc {
/**

View File

@@ -7,6 +7,8 @@
#pragma once
#include <stdint.h>
#include <array>
#include "DigitalSource.h"
@@ -50,7 +52,7 @@ class DigitalGlitchFilter : public SensorBase {
int m_channelIndex = -1;
static hal::priority_mutex m_mutex;
static ::std::array<bool, 3> m_filterAllocated;
static std::array<bool, 3> m_filterAllocated;
};
} // namespace frc

View File

@@ -7,8 +7,6 @@
#pragma once
#include <stdint.h>
#include <memory>
#include <string>

View File

@@ -8,13 +8,11 @@
#pragma once
#include <atomic>
#include <condition_variable>
#include <memory>
#include <string>
#include <thread>
#include "HAL/DriverStation.h"
#include "HAL/cpp/priority_condition_variable.h"
#include "HAL/cpp/priority_mutex.h"
#include "RobotState.h"
#include "SensorBase.h"

View File

@@ -7,6 +7,8 @@
#pragma once
#include <stdint.h>
#include "SensorBase.h"
enum HAL_I2CPort : int32_t;

View File

@@ -7,8 +7,6 @@
#pragma once
#include <memory>
#include "AnalogTriggerType.h"
#include "HAL/Interrupts.h"
#include "SensorBase.h"

View File

@@ -7,6 +7,8 @@
#pragma once
#include <stdint.h>
#include <atomic>
#include <functional>
#include <utility>

View File

@@ -7,6 +7,8 @@
#pragma once
#include <stdint.h>
#include <memory>
#include <string>

View File

@@ -7,7 +7,8 @@
#pragma once
#include <map>
#include <stdint.h>
#include <memory>
#include <string>
#include <vector>

View File

@@ -7,6 +7,8 @@
#pragma once
#include <stdint.h>
#include "SensorBase.h"
enum HAL_SPIPort : int32_t;

View File

@@ -7,8 +7,6 @@
#pragma once
#include <stdint.h>
#include "Base.h"
#include "ErrorBase.h"

View File

@@ -7,8 +7,6 @@
#pragma once
#include <memory>
#include "SensorBase.h"
namespace frc {

View File

@@ -7,6 +7,8 @@
#pragma once
#include <stdint.h>
#include <string>
#include <thread>