fix warning involving unused variable
parent
086df4fe35
commit
b135e5b915
|
@ -277,7 +277,6 @@ std::vector<std::string> blt::string::BinaryTreeFormatter::construct()
|
||||||
lineLength = std::max(lineLength, v.length());
|
lineLength = std::max(lineLength, v.length());
|
||||||
lines.push_back(createPadding(padLength) + v);
|
lines.push_back(createPadding(padLength) + v);
|
||||||
maxLineLength = std::max(maxLineLength, lines.back().length());
|
maxLineLength = std::max(maxLineLength, lines.back().length());
|
||||||
lastLineLength = lines.back().length();
|
|
||||||
}
|
}
|
||||||
levels.pop();
|
levels.pop();
|
||||||
if (!levels.empty())
|
if (!levels.empty())
|
||||||
|
|
Loading…
Reference in New Issue