diff options
author | Martino Facchin <m.facchin@arduino.cc> | 2019-05-16 14:46:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-16 14:46:15 +0200 |
commit | 7a2e1cd815266fef3012a5c9b48f88d78551f838 (patch) | |
tree | ce788131ebc2f5fd8d2e8f61fd84bb462520031f | |
parent | 5755ddea49fa69d6c505c772ebee5af5078e2ebf (diff) | |
parent | d518be6797790a6055deeb1a00f4a7c20773b970 (diff) |
Merge pull request #51 from florian-schweiger/patch-1
Remove historic Arduino 0012 workaround in SoftwareSerial
-rw-r--r-- | libraries/SoftwareSerial/src/SoftwareSerial.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/libraries/SoftwareSerial/src/SoftwareSerial.h b/libraries/SoftwareSerial/src/SoftwareSerial.h index b1a37c4..d8b88ce 100644 --- a/libraries/SoftwareSerial/src/SoftwareSerial.h +++ b/libraries/SoftwareSerial/src/SoftwareSerial.h @@ -111,13 +111,4 @@ public: static inline void handle_interrupt() __attribute__((__always_inline__));
};
-// Arduino 0012 workaround
-#undef int
-#undef char
-#undef long
-#undef byte
-#undef float
-#undef abs
-#undef round
-
#endif
|