File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 1
1
ArduinoJson: change log
2
2
=======================
3
3
4
+ v5.0.1
5
+ ------
6
+
7
+ * Fixed compilation with Arduino 1.0.6 (issue #99 )
8
+
4
9
v5.0.0
5
10
------
6
11
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class JsonArraySubscript : public JsonSubscriptBase<JsonArraySubscript> {
14
14
FORCE_INLINE JsonArraySubscript (JsonArray& array, size_t index)
15
15
: _array(array), _index(index) {}
16
16
17
- using JsonSubscriptBase::operator =;
17
+ using JsonSubscriptBase<JsonArraySubscript> ::operator =;
18
18
19
19
FORCE_INLINE bool success () const { return _index < _array.size (); }
20
20
Original file line number Diff line number Diff line change 1
1
name =ArduinoJson
2
- version =5.0.0
2
+ version =5.0.1
3
3
author =Benoit Blanchon <blog.benoitblanchon.fr>
4
4
maintainer =Benoit Blanchon <blog.benoitblanchon.fr>
5
5
sentence =An efficient and elegant JSON library for Arduino.
You can’t perform that action at this time.
0 commit comments