Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions json.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -780,7 +780,7 @@ json::parsing::parse_results json::parsing::parse(const char *input)
json::reader stream;

// Iterate
while(!EMPTY_STRING(input) && stream.push(*index) != json::reader::REJECTED)
while(!EMPTY_STRING(index) && stream.push(*index) != json::reader::REJECTED)
{
index++;
}
Expand Down Expand Up @@ -1036,4 +1036,4 @@ std::string json::jobject::pretty(unsigned int indent_level) const
result += "}";
}
return result;
}
}