From 6de392e1208807809c892ef922435b8bf1b5e396 Mon Sep 17 00:00:00 2001 From: Daniel Bertalan Date: Sun, 1 Aug 2021 08:58:23 +0200 Subject: [PATCH] LibWeb: Add missing `typeinfo` include Not having this header only causes an issue on Clang builds, since in libc++, `std::type_info` is only forward-declared in `cxxabi.h`. --- Userland/Libraries/LibWeb/Layout/Node.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Libraries/LibWeb/Layout/Node.cpp b/Userland/Libraries/LibWeb/Layout/Node.cpp index 9807beb548..b6069936ae 100644 --- a/Userland/Libraries/LibWeb/Layout/Node.cpp +++ b/Userland/Libraries/LibWeb/Layout/Node.cpp @@ -16,6 +16,7 @@ #include #include #include +#include namespace Web::Layout {