From df29a784babac558f9cb4af9e6f6dd53f691fe93 Mon Sep 17 00:00:00 2001 From: Jonne Ransijn Date: Thu, 10 Apr 2025 14:55:47 +0200 Subject: [PATCH] LibWeb: Remove unuses variable in `PaintableBox.cpp` --- Libraries/LibWeb/Painting/PaintableBox.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Libraries/LibWeb/Painting/PaintableBox.cpp b/Libraries/LibWeb/Painting/PaintableBox.cpp index 9f1f166ed98..20683e2ffd0 100644 --- a/Libraries/LibWeb/Painting/PaintableBox.cpp +++ b/Libraries/LibWeb/Painting/PaintableBox.cpp @@ -841,7 +841,6 @@ void PaintableWithLines::paint(PaintContext& context, PaintPhase phase) const return; bool should_clip_overflow = computed_values().overflow_x() != CSS::Overflow::Visible && computed_values().overflow_y() != CSS::Overflow::Visible; - Optional corner_clip_id; auto clip_box = absolute_padding_box_rect(); if (get_clip_rect().has_value()) {