mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2026-01-10 16:08:35 +01:00
At all 3 places isMultiLine is checked in for loop :
for (int index = 0; index < size && !isMultiLine; ++index) {
It means !isMultiLine is always true (otherwise do not enter loop), so || condition does not depend on isMultiLine, so removed that.