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