mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2026-01-12 00:50:12 +01:00
for (int index = 0; index < size && !isMultiLine; ++index) In addition to dead code, in the above if condition checking to !isMultiLine is of no use as it will be always true and hence "for" depends only on condition [index < size.] The mentioned test case works fine in this case also.