From 8ccd8b4a6f7f06d591f1232341b71ab92c87d12e Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Wed, 20 Jan 2021 14:16:25 -0500 Subject: [PATCH] LibJS: Include in AST.cpp Without this, the oss-fuzz build says: ../Userland/Libraries/LibJS/AST.cpp:58:34: error: member access into incomplete type 'const std::type_info' return demangle(typeid(*this).name()).substring(4); ^ --- Userland/Libraries/LibJS/AST.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Libraries/LibJS/AST.cpp b/Userland/Libraries/LibJS/AST.cpp index 13e63e4084..2fb0ee1364 100644 --- a/Userland/Libraries/LibJS/AST.cpp +++ b/Userland/Libraries/LibJS/AST.cpp @@ -49,6 +49,7 @@ #include #include #include +#include namespace JS {