8000
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 f3265d2 commit 20fcb99Copy full SHA for 20fcb99
CHANGELOG.md
@@ -6,6 +6,7 @@ HEAD
6
7
* Fixed warning "unused variable" with GCC 4.4 (issue #912)
8
* Fixed warning "cast increases required alignment" (issue #914)
9
+* Fixed warning "conversion may alter value" (issue #914)
10
* Added a clear error message for `StaticJsonBuffer` and `DynamicJsonBuffer`
11
12
v6.9.0 (2019-02-26)
src/ArduinoJson/Json/JsonDeserializer.hpp
@@ -306,7 +306,7 @@ class JsonDeserializer {
306
307
static inline uint8_t decodeHex(char c) {
308
if (c < 'A') return uint8_t(c - '0');
309
- c &= ~0x20; // uppercase
+ c = char(c & ~0x20); // uppercase
310
return uint8_t(c - 'A' + 10);
311
}
312
0 commit comments