From 8cb6484f6cd008eeb91991a4a548232ca39c2001 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Wed, 23 Nov 2022 12:42:35 +0100 Subject: [PATCH] LibJS: Make Script.h not include Parser.h --- Userland/Libraries/LibJS/Script.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibJS/Script.h b/Userland/Libraries/LibJS/Script.h index 3ee0619586..45f82ecc64 100644 --- a/Userland/Libraries/LibJS/Script.h +++ b/Userland/Libraries/LibJS/Script.h @@ -10,7 +10,7 @@ #include #include #include -#include +#include #include namespace JS {