Skip to content

Commit

Permalink
Fixed compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
bblanchon committed Oct 11, 2014
1 parent b49aa22 commit d192a14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions srcs/Internals/JsonNode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ void JsonNode::writeArrayTo(JsonWriter& writer)
{
writer.beginArray();

while (true)
for (;;)
{
child->writeTo(writer);

Expand All @@ -115,7 +115,7 @@ void JsonNode::writeObjectTo(JsonWriter& writer)
{
writer.beginObject();

while (true)
for (;;)
{
writer.writeString(child->content.asKey.key);
writer.writeColon();
Expand Down

0 comments on commit d192a14

Please sign in to comment.