From 54d10d8ddac7bed81e485977c66e4946ed4de62a Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 7 Feb 2022 21:05:30 +0100 Subject: [PATCH] LibJS: Add missing include to Handle.h --- Userland/Libraries/LibJS/Heap/Handle.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Libraries/LibJS/Heap/Handle.h b/Userland/Libraries/LibJS/Heap/Handle.h index e68b1d59f1..310a746f58 100644 --- a/Userland/Libraries/LibJS/Heap/Handle.h +++ b/Userland/Libraries/LibJS/Heap/Handle.h @@ -12,6 +12,7 @@ #include #include #include +#include #include namespace JS {