mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-16 12:02:14 +02:00
Fixed compiler warning
This commit is contained in:
@ -89,7 +89,7 @@ void JsonNode::writeArrayTo(JsonWriter& writer)
|
|||||||
{
|
{
|
||||||
writer.beginArray();
|
writer.beginArray();
|
||||||
|
|
||||||
while (true)
|
for (;;)
|
||||||
{
|
{
|
||||||
child->writeTo(writer);
|
child->writeTo(writer);
|
||||||
|
|
||||||
@ -115,7 +115,7 @@ void JsonNode::writeObjectTo(JsonWriter& writer)
|
|||||||
{
|
{
|
||||||
writer.beginObject();
|
writer.beginObject();
|
||||||
|
|
||||||
while (true)
|
for (;;)
|
||||||
{
|
{
|
||||||
writer.writeString(child->content.asKey.key);
|
writer.writeString(child->content.asKey.key);
|
||||||
writer.writeColon();
|
writer.writeColon();
|
||||||
|
Reference in New Issue
Block a user