From 70a1007ae4fded7e786fc9b5b6e301b25d19fdf7 Mon Sep 17 00:00:00 2001 From: Alexander Entinger Date: Thu, 1 Oct 2020 11:24:30 +0200 Subject: [PATCH] Adding missing header include guards for Arduino_Thread.h --- Arduino_Threads.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Arduino_Threads.h b/Arduino_Threads.h index 6d313cc..704184e 100644 --- a/Arduino_Threads.h +++ b/Arduino_Threads.h @@ -1,3 +1,6 @@ +#ifndef ARDUINO_THREADS_H_ +#define ARDUINO_THREADS_H_ + #include @@ -141,4 +144,6 @@ private: \ CONCAT(tabname,Class) tabname; #include "Wire.h" -#include "SerialDispatcher.h" \ No newline at end of file +#include "SerialDispatcher.h" + +#endif /* ARDUINO_THREADS_H_ */