mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-06-25 01:11:35 +02:00
Fixed compilation error on Clang 10
This commit is contained in:
@ -7,6 +7,7 @@ HEAD
|
||||
* Made `JsonDocument`'s destructor protected (issue #1480)
|
||||
* Added missing calls to `client.stop()` in `JsonHttpClient.ino` (issue #1485)
|
||||
* Fixed error `expected ')' before 'char'` when `isdigit()` is a macro (issue #1487)
|
||||
* Fixed error `definition of implicit copy constructor is deprecated` on Clang 10
|
||||
|
||||
v6.17.2 (2020-11-14)
|
||||
-------
|
||||
|
@ -42,8 +42,6 @@ class JsonDeserializer {
|
||||
}
|
||||
|
||||
private:
|
||||
JsonDeserializer &operator=(const JsonDeserializer &); // non-copiable
|
||||
|
||||
char current() {
|
||||
return _latch.current();
|
||||
}
|
||||
|
Reference in New Issue
Block a user