From 2782d739a59ded589bcbe290c64aa012ab868d11 Mon Sep 17 00:00:00 2001 From: Tom Price Date: Thu, 14 Sep 2023 01:31:38 -0400 Subject: [PATCH] F -> _F rename macro `F` in Arduino.h to `_F` to avoid a clash with another macro with the same name --- include/arduino-mock/Arduino.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/arduino-mock/Arduino.h b/include/arduino-mock/Arduino.h index 77b496b..4d6400f 100644 --- a/include/arduino-mock/Arduino.h +++ b/include/arduino-mock/Arduino.h @@ -74,7 +74,7 @@ void loop(void); #include #define UNUSED(expr) do { (void)(expr); } while (0) -#define F(x) (x) +#define _F(x) (x) class ArduinoMock { public: