From 673e6f3a329f3bdc60dda453d874290f8e408420 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 7 Feb 2022 21:48:57 +0100 Subject: [PATCH] LibJS: Add missing include to ExecutionContext.h --- Userland/Libraries/LibJS/Runtime/ExecutionContext.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Libraries/LibJS/Runtime/ExecutionContext.h b/Userland/Libraries/LibJS/Runtime/ExecutionContext.h index a102982aaa..6cf0c1e7b1 100644 --- a/Userland/Libraries/LibJS/Runtime/ExecutionContext.h +++ b/Userland/Libraries/LibJS/Runtime/ExecutionContext.h @@ -8,6 +8,7 @@ #pragma once #include +#include #include #include #include