From b135e5b915e0efaae2f8d9dc30d4752726b74bb4 Mon Sep 17 00:00:00 2001 From: Brett Laptop Date: Tue, 26 Dec 2023 14:31:44 -0500 Subject: [PATCH] fix warning involving unused variable --- src/blt/std/format.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/blt/std/format.cpp b/src/blt/std/format.cpp index 0b467e9..713429a 100755 --- a/src/blt/std/format.cpp +++ b/src/blt/std/format.cpp @@ -277,7 +277,6 @@ std::vector blt::string::BinaryTreeFormatter::construct() lineLength = std::max(lineLength, v.length()); lines.push_back(createPadding(padLength) + v); maxLineLength = std::max(maxLineLength, lines.back().length()); - lastLineLength = lines.back().length(); } levels.pop(); if (!levels.empty())