Skip to content

Commit e8f2289

Browse files
committed
Nano platform needs assert.h explicitly. Added.
1 parent 0bb2249 commit e8f2289

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

examples/JSONObject/JSONObject.ino

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
*/
99

1010
#include <Arduino_JSON.h>
11+
#include <assert.h>
1112

1213
const char input[] = "{\"result\":true,\"count\":42,\"foo\":\"bar\"}";
1314

@@ -132,4 +133,4 @@ void demoCreation() {
132133

133134
Serial.print("myObject = ");
134135
Serial.println(myObject);
135-
}
136+
}

0 commit comments

Comments
 (0)