diff options
author | Ben Wiederhake <BenWiederhake.GitHub@gmx.de> | 2022-09-14 10:39:32 +0200 |
---|---|---|
committer | Brian Gianforcaro <b.gianfo@gmail.com> | 2022-09-17 04:00:54 +0000 |
commit | e909231d78fcacc3fbe2612d8f24a4a3e3f1ff7a (patch) | |
tree | d6d13a44eecae73ad9310ad01ca1df1117f94956 /Userland/Libraries | |
parent | 4cd382c6210f6435e101009d271e3c97b074c1f9 (diff) | |
download | serenity-e909231d78fcacc3fbe2612d8f24a4a3e3f1ff7a.zip |
LibWeb: Break inclusion cycle through forward-declaration
Diffstat (limited to 'Userland/Libraries')
-rw-r--r-- | Userland/Libraries/LibWeb/CSS/Parser/ComponentValue.h | 1 | ||||
-rw-r--r-- | Userland/Libraries/LibWeb/CSS/Parser/DeclarationOrAtRule.cpp | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/CSS/Parser/ComponentValue.h b/Userland/Libraries/LibWeb/CSS/Parser/ComponentValue.h index f81ed1e8ba..2685a7eeed 100644 --- a/Userland/Libraries/LibWeb/CSS/Parser/ComponentValue.h +++ b/Userland/Libraries/LibWeb/CSS/Parser/ComponentValue.h @@ -9,7 +9,6 @@ #include <AK/NonnullRefPtr.h> #include <AK/RefPtr.h> -#include <LibWeb/CSS/Parser/Function.h> #include <LibWeb/CSS/Parser/Token.h> #include <LibWeb/Forward.h> diff --git a/Userland/Libraries/LibWeb/CSS/Parser/DeclarationOrAtRule.cpp b/Userland/Libraries/LibWeb/CSS/Parser/DeclarationOrAtRule.cpp index 6c3566bec0..3f6bf5f313 100644 --- a/Userland/Libraries/LibWeb/CSS/Parser/DeclarationOrAtRule.cpp +++ b/Userland/Libraries/LibWeb/CSS/Parser/DeclarationOrAtRule.cpp @@ -6,6 +6,7 @@ */ #include <LibWeb/CSS/Parser/DeclarationOrAtRule.h> +#include <LibWeb/CSS/Parser/Function.h> namespace Web::CSS::Parser { |