diff options
author | Sam Atkins <atkinssj@serenityos.org> | 2022-04-13 20:50:43 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-04-14 14:54:06 +0200 |
commit | a797a92990ce71719aa894ace99be42661d659c8 (patch) | |
tree | c307f4b3b7fbd8658c4e2f7ad9238328ad903201 /Userland/Libraries/LibWeb/CSS/LengthBox.h | |
parent | c66da0f2cb54f552abc7574f873ccb4a9260f4c9 (diff) | |
download | serenity-a797a92990ce71719aa894ace99be42661d659c8.zip |
LibWeb: Stop including StyleValue.h in a few places
I don't know how much this will actually help compile times, but it's
something!
Diffstat (limited to 'Userland/Libraries/LibWeb/CSS/LengthBox.h')
-rw-r--r-- | Userland/Libraries/LibWeb/CSS/LengthBox.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Userland/Libraries/LibWeb/CSS/LengthBox.h b/Userland/Libraries/LibWeb/CSS/LengthBox.h index e68efbcb61..7aef70eaa4 100644 --- a/Userland/Libraries/LibWeb/CSS/LengthBox.h +++ b/Userland/Libraries/LibWeb/CSS/LengthBox.h @@ -6,8 +6,7 @@ #pragma once -#include <LibWeb/CSS/Length.h> -#include <LibWeb/CSS/StyleValue.h> +#include <LibWeb/CSS/Percentage.h> namespace Web::CSS { |