forked from bblanchon/ArduinoJson
clang-tidy: muted "uninitialized field" in Latch
This commit is contained in:
@ -45,7 +45,8 @@ class Latch {
|
|||||||
}
|
}
|
||||||
|
|
||||||
TReader _reader;
|
TReader _reader;
|
||||||
char _current;
|
char _current; // NOLINT(clang-analyzer-optin.cplusplus.UninitializedObject)
|
||||||
|
// Not initialized in constructor (+10 bytes on AVR)
|
||||||
bool _loaded;
|
bool _loaded;
|
||||||
#if ARDUINOJSON_DEBUG
|
#if ARDUINOJSON_DEBUG
|
||||||
bool _ended;
|
bool _ended;
|
||||||
|
Reference in New Issue
Block a user