From cc7a117f0ffd52634497061a39254d47ccd49e59 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 7 Feb 2022 22:39:57 +0100 Subject: [PATCH] LibJS: Add missing include to ShadowRealm.h --- Userland/Libraries/LibJS/Runtime/ShadowRealm.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Libraries/LibJS/Runtime/ShadowRealm.h b/Userland/Libraries/LibJS/Runtime/ShadowRealm.h index 164d8a3b3c..a2c21b4914 100644 --- a/Userland/Libraries/LibJS/Runtime/ShadowRealm.h +++ b/Userland/Libraries/LibJS/Runtime/ShadowRealm.h @@ -7,6 +7,7 @@ #pragma once #include +#include #include #include