forked from bblanchon/ArduinoJson
Set ARDUINOJSON_DECODE_UNICODE
to 1
by default
This commit is contained in:
@ -6,6 +6,7 @@ HEAD
|
|||||||
|
|
||||||
* Added comparisons (`>`, `>=`, `==`, `!=`, `<`, and `<=`) between `JsonVariant`s
|
* Added comparisons (`>`, `>=`, `==`, `!=`, `<`, and `<=`) between `JsonVariant`s
|
||||||
* Added string deduplication (issue #1303)
|
* Added string deduplication (issue #1303)
|
||||||
|
* Set `ARDUINOJSON_DECODE_UNICODE` to `1` by default
|
||||||
* Fixed `copyArray()` not working with `String`, `ElementProxy`, and `MemberProxy`
|
* Fixed `copyArray()` not working with `String`, `ElementProxy`, and `MemberProxy`
|
||||||
* Fixed error `getOrAddElement is not a member of ElementProxy` (issue #1311)
|
* Fixed error `getOrAddElement is not a member of ElementProxy` (issue #1311)
|
||||||
* Fixed excessive stack usage when compiled with `-Og` (issues #1210 and #1314)
|
* Fixed excessive stack usage when compiled with `-Og` (issues #1210 and #1314)
|
||||||
|
@ -164,7 +164,7 @@
|
|||||||
|
|
||||||
// Convert unicode escape sequence (\u0123) to UTF-8
|
// Convert unicode escape sequence (\u0123) to UTF-8
|
||||||
#ifndef ARDUINOJSON_DECODE_UNICODE
|
#ifndef ARDUINOJSON_DECODE_UNICODE
|
||||||
#define ARDUINOJSON_DECODE_UNICODE 0
|
#define ARDUINOJSON_DECODE_UNICODE 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Ignore comments in input
|
// Ignore comments in input
|
||||||
|
Reference in New Issue
Block a user