File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
src/ArduinoJson/Deserialization Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 8
8
* Fix double lookup in ` to<JsonVariant>() `
9
9
* Fix double call to ` size() ` in ` serializeMsgPack() `
10
10
* Include ` ARDUINOJSON_SLOT_OFFSET_SIZE ` in the namespace name
11
+ * Show a link to the documentation when user passes an unsupported input type
11
12
12
13
v6.21.2 (2023-04-12)
13
14
-------
Original file line number Diff line number Diff line change @@ -18,7 +18,9 @@ struct Reader {
18
18
Reader (TSource& source) : source_(&source) {}
19
19
20
20
int read () {
21
- return source_->read (); // Error here? You passed an unsupported input type
21
+ // clang-format off
22
+ return source_->read (); // Error here? See https://arduinojson.org/v6/invalid-input/
23
+ // clang-format on
22
24
}
23
25
24
26
size_t readBytes (char * buffer, size_t length) {
You can’t perform that action at this time.
0 commit comments