8000 Fixed compilation with Arduino 1.0.6 (issue #99) · me-no-dev/ArduinoJson@a003a31 · GitHub
[go: up one dir, main page]

Skip to content

Commit a003a31

Browse files
author
Benoit Blanchon
committed
Fixed compilation with Arduino 1.0.6 (issue bblanchon#99)
1 parent 0a1c27f commit a003a31

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
ArduinoJson: change log
22
=======================
33

4+
v5.0.1
5+
------
6+
7+
* Fixed compilation with Arduino 1.0.6 (issue #99)
8+
49
v5.0.0
510
------
611

include/ArduinoJson/JsonArraySubscript.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class JsonArraySubscript : public JsonSubscriptBase<JsonArraySubscript> {
1414
FORCE_INLINE JsonArraySubscript(JsonArray& array, size_t index)
1515
: _array(array), _index(index) {}
1616

17-
using JsonSubscriptBase::operator=;
17+
using JsonSubscriptBase<JsonArraySubscript>::operator=;
1818

1919
FORCE_INLINE bool success() const { return _index < _array.size(); }
2020

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=ArduinoJson
2-
version=5.0.0
2+
version=5.0.1
33
author=Benoit Blanchon <blog.benoitblanchon.fr>
44
maintainer=Benoit Blanchon <blog.benoitblanchon.fr>
55
sentence=An efficient and elegant JSON library for Arduino.

0 commit comments

Comments
 (0)
0