diff options
author | Andreas Kling <kling@serenityos.org> | 2021-02-10 12:21:14 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-02-10 12:21:14 +0100 |
commit | 70bd1724db21058c6ab0f4a5bd38a6aaf733a315 (patch) | |
tree | bcc0dca9a8cabec52f2969c46e3124d6761b6cd6 | |
parent | acd46dcb0c9b779efc97422e76ddf2eb51ffcf75 (diff) | |
download | serenity-70bd1724db21058c6ab0f4a5bd38a6aaf733a315.zip |
LibJS: Include <typeinfo> in AST.cpp again
Linus points out that oss-fuzz wants this to be there.
-rw-r--r-- | Userland/Libraries/LibJS/AST.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibJS/AST.cpp b/Userland/Libraries/LibJS/AST.cpp index b87272acf5..7ff07f32af 100644 --- a/Userland/Libraries/LibJS/AST.cpp +++ b/Userland/Libraries/LibJS/AST.cpp @@ -48,6 +48,7 @@ #include <LibJS/Runtime/ScriptFunction.h> #include <LibJS/Runtime/Shape.h> #include <LibJS/Runtime/WithScope.h> +#include <typeinfo> namespace JS { |