From 34855744995887d9b9ecfacaeee4fa5615e29d5e Mon Sep 17 00:00:00 2001 From: Daniel Armyr Date: Sun, 5 Sep 2021 20:18:22 +0200 Subject: [PATCH] Only include Arduino.h when we compile to device. --- src/FixedPoints/Details.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/FixedPoints/Details.h b/src/FixedPoints/Details.h index a2a81fe..94dc339 100644 --- a/src/FixedPoints/Details.h +++ b/src/FixedPoints/Details.h @@ -14,7 +14,11 @@ #pragma once +#ifdef ARDUINO #include +#else +#endif + #include #include