Don't mark as a "system header" when debugging

This commit is contained in:
Benoit Blanchon
2019-03-05 09:19:22 +01:00
parent 49bd51b5f9
commit c4cbf9d0bb

View File

@ -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"