fix warning involving unused variable

v1
Brett 2023-12-26 14:31:44 -05:00
parent 086df4fe35
commit b135e5b915
1 changed files with 0 additions and 1 deletions

View File

@ -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())