1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 02:27:43 +00:00

LibWeb: Break inclusion cycle through forward-declaration

This commit is contained in:
Ben Wiederhake 2022-09-14 10:39:32 +02:00 committed by Brian Gianforcaro
parent 4cd382c621
commit e909231d78
2 changed files with 1 additions and 1 deletions

View file

@ -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>

View file

@ -6,6 +6,7 @@
*/
#include <LibWeb/CSS/Parser/DeclarationOrAtRule.h>
#include <LibWeb/CSS/Parser/Function.h>
namespace Web::CSS::Parser {