10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ea8d92 commit 136ee0dCopy full SHA for 136ee0d
CHANGELOG.md
@@ -9,6 +9,7 @@ HEAD
9
* Fixed warning "conversion may alter value" (issue #914)
10
* Muted warning "will change in GCC 7.1" (issue #914)
11
* Added a clear error message for `StaticJsonBuffer` and `DynamicJsonBuffer`
12
+* Marked ArduinoJson.h as a "system header"
13
14
v6.9.0 (2019-02-26)
15
------
src/ArduinoJson.hpp
@@ -4,6 +4,12 @@
4
5
#pragma once
6
7
+#ifdef __clang__
8
+#pragma clang system_header
+#elif defined __GNUC__
+#pragma GCC system_header
+#endif
+
#include "ArduinoJson/Namespace.hpp"
#include "ArduinoJson/Array/ArrayRef.hpp"
0 commit comments