From 2fadbe176e248fe5ba8479f15d8c06437e4487ec Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Fri, 29 Oct 2021 08:38:16 -0400 Subject: [PATCH] LibWeb: Remove extraneous semi-colon --- Userland/Libraries/LibWeb/CSS/ComputedValues.h | 1 - 1 file changed, 1 deletion(-) diff --git a/Userland/Libraries/LibWeb/CSS/ComputedValues.h b/Userland/Libraries/LibWeb/CSS/ComputedValues.h index edad3d0254..c939470a55 100644 --- a/Userland/Libraries/LibWeb/CSS/ComputedValues.h +++ b/Userland/Libraries/LibWeb/CSS/ComputedValues.h @@ -179,7 +179,6 @@ protected: CSS::FlexBasisData flex_basis {}; float flex_grow { InitialValues::flex_grow() }; float flex_shrink { InitialValues::flex_shrink() }; - ; CSS::AlignItems align_items { InitialValues::align_items() }; CSS::JustifyContent justify_content { InitialValues::justify_content() }; CSS::Overflow overflow_x { InitialValues::overflow() };