From 97ba1ff1f74a4f76ff6bb79005368d7100314d76 Mon Sep 17 00:00:00 2001 From: Andi Gallo Date: Sun, 13 Aug 2023 04:11:17 +0000 Subject: [PATCH] LibWeb: Remove unused variable from compute_height method --- Userland/Libraries/LibWeb/Layout/BlockFormattingContext.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Userland/Libraries/LibWeb/Layout/BlockFormattingContext.cpp b/Userland/Libraries/LibWeb/Layout/BlockFormattingContext.cpp index 51edae8a8c..f53e30330e 100644 --- a/Userland/Libraries/LibWeb/Layout/BlockFormattingContext.cpp +++ b/Userland/Libraries/LibWeb/Layout/BlockFormattingContext.cpp @@ -442,7 +442,6 @@ CSSPixels BlockFormattingContext::compute_table_box_width_inside_table_wrapper(B void BlockFormattingContext::compute_height(Box const& box, AvailableSpace const& available_space) { auto const& computed_values = box.computed_values(); - auto containing_block_height = CSS::Length::make_px(available_space.height.to_px_or_zero()); // Then work out what the height is, based on box type and CSS properties. CSSPixels height = 0;