LibWeb: Add missing include to CSS/Parser/Types.h

CSS::Parser::Token is not forward-declarable here. This was caught by
the Swift build on my machine.
This commit is contained in:
Timothy Flynn 2024-11-07 14:39:37 -05:00 committed by Andreas Kling
parent b625a92a0b
commit 44443689f2
Notes: github-actions[bot] 2024-11-07 21:54:22 +00:00

View file

@ -10,6 +10,7 @@
#include <AK/Function.h>
#include <AK/Variant.h>
#include <AK/Vector.h>
#include <LibWeb/CSS/Parser/Token.h>
#include <LibWeb/CSS/StyleProperty.h>
#include <LibWeb/Forward.h>