We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 416964e commit c75dcc1Copy full SHA for c75dcc1
1 file changed
JsonVisitor.cpp
@@ -38,7 +38,7 @@ void JsonVisitor::printChildList(
38
const std::vector<std::string>::const_iterator &childIterator,
39
size_t numChildren) {
40
out_ << '[';
41
- for (int ii = 0; ii < numChildren; ++ii) {
+ for (size_t ii = 0; ii < numChildren; ++ii) {
42
if (ii != 0) {
43
out_ << ',';
44
}
0 commit comments