diff options
author | Timothy Flynn <trflynn89@pm.me> | 2021-10-29 08:38:16 -0400 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-10-29 22:06:49 +0200 |
commit | 2fadbe176e248fe5ba8479f15d8c06437e4487ec (patch) | |
tree | 96c71e2a55bee53022d74342780c1b73258b0899 /Userland/Libraries | |
parent | 39afbceb53afb5e3f9b8be2b4f7b711e3fda6b52 (diff) | |
download | serenity-2fadbe176e248fe5ba8479f15d8c06437e4487ec.zip |
LibWeb: Remove extraneous semi-colon
Diffstat (limited to 'Userland/Libraries')
-rw-r--r-- | Userland/Libraries/LibWeb/CSS/ComputedValues.h | 1 |
1 files changed, 0 insertions, 1 deletions
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() }; |