From 376305a5a7a800242e5da628564a401cfe9b0ae5 Mon Sep 17 00:00:00 2001 From: Austen Adler Date: Sun, 8 Feb 2015 20:29:18 -0500 Subject: [PATCH] Removed cmath --- Commands/Autonomous/AutoDrive.cpp | 1 - Commands/Drivetrain/Drive.cpp | 1 - 2 files changed, 2 deletions(-) diff --git a/Commands/Autonomous/AutoDrive.cpp b/Commands/Autonomous/AutoDrive.cpp index b7833ec..4d46525 100644 --- a/Commands/Autonomous/AutoDrive.cpp +++ b/Commands/Autonomous/AutoDrive.cpp @@ -1,5 +1,4 @@ #include "AutoDrive.h" -#include #include "../../DentRobot.h" // Drive for a short while then stop. Just for testing AutoDrive::AutoDrive() : Command("AutoDrive"){ diff --git a/Commands/Drivetrain/Drive.cpp b/Commands/Drivetrain/Drive.cpp index 60fa59c..3b91bae 100644 --- a/Commands/Drivetrain/Drive.cpp +++ b/Commands/Drivetrain/Drive.cpp @@ -1,5 +1,4 @@ #include "Drive.h" -#include #include "../../DentRobot.h" Drive::Drive() : Command("Drive"){ Requires(DentRobot::drivetrain);