summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReinhold Gschweicher <pyro4hell@gmail.com>2021-12-05 13:32:26 (GMT)
committerJF <JF002@users.noreply.github.com>2021-12-09 20:30:20 (GMT)
commit23f318c3d09d9707b9a38528eaf6c37b2754f6e2 (patch)
tree5557fe62be3cc4841a4638f23a6e3299cfc10a4d
parent9db5d64441562a61216fd9c62067f33b24df751f (diff)
TouchHandler: remove unused FreeRTOS.h and task.h includes from header
FreeRTOS and task.h aren't used in the Header file. Furthermore the SystemTask forward declaration isn't needed as it isn't used in the header.
-rw-r--r--src/touchhandler/TouchHandler.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/touchhandler/TouchHandler.h b/src/touchhandler/TouchHandler.h
index f544293..ed452b3 100644
--- a/src/touchhandler/TouchHandler.h
+++ b/src/touchhandler/TouchHandler.h
@@ -1,8 +1,6 @@
#pragma once
#include "drivers/Cst816s.h"
#include "systemtask/SystemTask.h"
-#include <FreeRTOS.h>
-#include <task.h>
namespace Pinetime {
namespace Components {
@@ -11,9 +9,6 @@ namespace Pinetime {
namespace Drivers {
class Cst816S;
}
- namespace System {
- class SystemTask;
- }
namespace Controllers {
class TouchHandler {
public: