mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2025-05-18 19:37:35 +02: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.