From b2cd935efd389b7850a9c8a54fa2d335d009ae7f Mon Sep 17 00:00:00 2001 From: Ben Wiederhake Date: Mon, 2 Jan 2023 16:57:12 +0100 Subject: [PATCH] LibCore: Remove unused include MemMem These instances were detected by searching for files that include MemMem.h, but don't match the regex: \\b(MemMem(?!\.h>)|bitap_bitwise|memmem|memmem_optional)\\b These are the only symbols defined by MemMem.h. In theory, one might use LibCPP to detect things like this automatically, but let's do this one step after another. --- Userland/Libraries/LibCore/Stream.h | 1 - 1 file changed, 1 deletion(-) diff --git a/Userland/Libraries/LibCore/Stream.h b/Userland/Libraries/LibCore/Stream.h index 35a0d25a06..385704e5e2 100644 --- a/Userland/Libraries/LibCore/Stream.h +++ b/Userland/Libraries/LibCore/Stream.h @@ -12,7 +12,6 @@ #include #include #include -#include #include #include #include