Always true condition.

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.
This commit is contained in:
renu555 2014-07-02 14:33:37 +05:30 committed by Christopher Dunn
parent 66b77384d8
commit 41b79398a3

View File

@ -341,7 +341,7 @@ bool StyledWriter::isMultineArray(const Value &value) {
childValues_.reserve(size);
addChildValues_ = true;
int lineLength = 4 + (size - 1) * 2; // '[ ' + ', '*n + ' ]'
for (int index = 0; index < size && !isMultiLine; ++index) {
for (int index = 0; index < size; ++index) {
writeValue(value[index]);
lineLength += int(childValues_[index].length());
}
@ -564,7 +564,7 @@ bool StyledStreamWriter::isMultineArray(const Value &value) {
childValues_.reserve(size);
addChildValues_ = true;
int lineLength = 4 + (size - 1) * 2; // '[ ' + ', '*n + ' ]'
for (int index = 0; index < size && !isMultiLine; ++index) {
for (int index = 0; index < size; ++index) {
writeValue(value[index]);
lineLength += int(childValues_[index].length());
}