From c4cbf9d0bb3f75a72880795bd342a174bd8ab279 Mon Sep 17 00:00:00 2001 From: Benoit Blanchon Date: Tue, 5 Mar 2019 09:19:22 +0100 Subject: [PATCH] Don't mark as a "system header" when debugging --- src/ArduinoJson.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ArduinoJson.hpp b/src/ArduinoJson.hpp index fa353bff..5188d5ea 100644 --- a/src/ArduinoJson.hpp +++ b/src/ArduinoJson.hpp @@ -4,11 +4,13 @@ #pragma once +#ifndef ARDUINOJSON_DEBUG #ifdef __clang__ #pragma clang system_header #elif defined __GNUC__ #pragma GCC system_header #endif +#endif #include "ArduinoJson/Namespace.hpp"