From 0c09a099a574d78c639740391b254a3c9f92a6f9 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Thu, 16 Jan 2025 12:49:07 -0500 Subject: [PATCH] LibWeb: Add missing #include to InputEventsTarget.h While investigating an issue with Unicode::Segmenter (the result of which is passed to functions in this file), this missing include was causing clangd to be unable to find non-virtual implementations. --- Libraries/LibWeb/DOM/InputEventsTarget.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Libraries/LibWeb/DOM/InputEventsTarget.h b/Libraries/LibWeb/DOM/InputEventsTarget.h index b3e30a25fa2..95a32b3dd62 100644 --- a/Libraries/LibWeb/DOM/InputEventsTarget.h +++ b/Libraries/LibWeb/DOM/InputEventsTarget.h @@ -6,6 +6,7 @@ #pragma once +#include #include namespace Web {