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`.
This commit is contained in:
Daniel Bertalan 2021-08-01 08:58:23 +02:00 committed by Andreas Kling
parent e9dd9d1f2c
commit 6de392e120
Notes: sideshowbarker 2024-07-18 07:16:18 +09:00

View file

@ -16,6 +16,7 @@
#include <LibWeb/Layout/Node.h>
#include <LibWeb/Layout/TextNode.h>
#include <LibWeb/Page/BrowsingContext.h>
#include <typeinfo>
namespace Web::Layout {