Fixed include order (#245)

See wpilibsuite/styleguide (#11).
This commit is contained in:
Tyler Veness
2016-09-25 16:50:13 -07:00
committed by Peter Johnson
parent 107a4cc1e2
commit 5dfae8d6bd
109 changed files with 175 additions and 87 deletions

View File

@@ -5,7 +5,7 @@
/* the project. */
/*----------------------------------------------------------------------------*/
#include "AnalogPotentiometer.h"
#include "AnalogPotentiometer.h" // NOLINT(build/include_order)
#include "AnalogOutput.h"
#include "ControllerPower.h"

View File

@@ -5,7 +5,7 @@
/* the project. */
/*----------------------------------------------------------------------------*/
#include "BuiltInAccelerometer.h"
#include "BuiltInAccelerometer.h" // NOLINT(build/include_order)
#include "Timer.h"
#include "gtest/gtest.h"

View File

@@ -5,7 +5,7 @@
/* the project. */
/*----------------------------------------------------------------------------*/
#include "CANJaguar.h"
#include "CANJaguar.h" // NOLINT(build/include_order)
#include <cmath>

View File

@@ -5,7 +5,7 @@
/* the project. */
/*----------------------------------------------------------------------------*/
#include "CANTalon.h"
#include "CANTalon.h" // NOLINT(build/include_order)
#include "TestBench.h"
#include "Timer.h"

View File

@@ -5,7 +5,7 @@
/* the project. */
/*----------------------------------------------------------------------------*/
#include "CircularBuffer.h"
#include "CircularBuffer.h" // NOLINT(build/include_order)
#include <array>

View File

@@ -5,7 +5,7 @@
/* the project. */
/*----------------------------------------------------------------------------*/
#include "Counter.h"
#include "Counter.h" // NOLINT(build/include_order)
#include "Jaguar.h"
#include "Talon.h"

View File

@@ -5,8 +5,8 @@
/* the project. */
/*----------------------------------------------------------------------------*/
#include "DigitalInput.h"
#include "DigitalOutput.h"
#include "DigitalInput.h" // NOLINT(build/include_order)
#include "DigitalOutput.h" // NOLINT(build/include_order)
#include "Counter.h"
#include "InterruptableSensorBase.h"

View File

@@ -5,7 +5,7 @@
/* the project. */
/*----------------------------------------------------------------------------*/
#include "DigitalGlitchFilter.h"
#include "DigitalGlitchFilter.h" // NOLINT(build/include_order)
#include "Counter.h"
#include "DigitalInput.h"

View File

@@ -5,7 +5,7 @@
/* the project. */
/*----------------------------------------------------------------------------*/
#include "Encoder.h"
#include "Encoder.h" // NOLINT(build/include_order)
#include "AnalogOutput.h"
#include "AnalogTrigger.h"

View File

@@ -5,7 +5,7 @@
/* the project. */
/*----------------------------------------------------------------------------*/
#include "Notifier.h"
#include "Notifier.h" // NOLINT(build/include_order)
#include "TestBench.h"
#include "Timer.h"

View File

@@ -5,7 +5,7 @@
/* the project. */
/*----------------------------------------------------------------------------*/
#include "PowerDistributionPanel.h"
#include "PowerDistributionPanel.h" // NOLINT(build/include_order)
#include "Jaguar.h"
#include "Talon.h"

View File

@@ -5,7 +5,7 @@
/* the project. */
/*----------------------------------------------------------------------------*/
#include "Relay.h"
#include "Relay.h" // NOLINT(build/include_order)
#include "DigitalInput.h"
#include "TestBench.h"

View File

@@ -5,7 +5,7 @@
/* the project. */
/*----------------------------------------------------------------------------*/
#include "Timer.h"
#include "Timer.h" // NOLINT(build/include_order)
#include "TestBench.h"
#include "gtest/gtest.h"