1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 20:18:12 +00:00

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

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 {