From 2a35a862307132135b0065e3cbf5f7d2356c7b52 Mon Sep 17 00:00:00 2001 From: annabunches Date: Mon, 1 Nov 2021 15:39:13 -0400 Subject: [PATCH] Reverting more cruft. --- Joystick.cpp | 2 -- Joystick.h | 2 -- 2 files changed, 4 deletions(-) diff --git a/Joystick.cpp b/Joystick.cpp index aded9f5..23613dd 100644 --- a/Joystick.cpp +++ b/Joystick.cpp @@ -1,8 +1,6 @@ #include "Joystick.h" #include -using std::list; - bool operator ==(JoyReport a, JoyReport b){ for (uint8_t i=0; i < JOYSTICK_NUM_AXES; i++) { if (a.axis[i] != b.axis[i]) return false; diff --git a/Joystick.h b/Joystick.h index cca7225..98cf64d 100644 --- a/Joystick.h +++ b/Joystick.h @@ -4,8 +4,6 @@ #include #include -using std::list; - // If you're using the arduino-big-joystick firmware, these numbers can't be // changed. If you're writing your own Report Descriptor, tune these to match by // defining them *before* you include Joystick.h.