Skip to content

Commit

Permalink
Fixed compilation with Arduino 1.0.6 (issue #99)
Browse files Browse the repository at this point in the history
  • Loading branch information
Benoit Blanchon committed Aug 24, 2015
1 parent 0a1c27f commit a003a31
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
ArduinoJson: change log
=======================

v5.0.1
------

* Fixed compilation with Arduino 1.0.6 (issue #99)

v5.0.0
------

Expand Down
2 changes: 1 addition & 1 deletion include/ArduinoJson/JsonArraySubscript.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class JsonArraySubscript : public JsonSubscriptBase<JsonArraySubscript> {
FORCE_INLINE JsonArraySubscript(JsonArray& array, size_t index)
: _array(array), _index(index) {}

using JsonSubscriptBase::operator=;
using JsonSubscriptBase<JsonArraySubscript>::operator=;

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

Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=ArduinoJson
version=5.0.0
version=5.0.1
author=Benoit Blanchon <blog.benoitblanchon.fr>
maintainer=Benoit Blanchon <blog.benoitblanchon.fr>
sentence=An efficient and elegant JSON library for Arduino.
Expand Down

0 comments on commit a003a31

Please sign in to comment.