diff options
author | Ben Wiederhake <BenWiederhake.GitHub@gmx.de> | 2023-01-02 16:57:12 +0100 |
---|---|---|
committer | Tim Flynn <trflynn89@pm.me> | 2023-01-02 20:27:20 -0500 |
commit | 65b420f99699ce308b88a15b8144c76a2f682f50 (patch) | |
tree | ae7d5d688cb81efa1d4f60b13541c3e6639eecaf /AK/String.cpp | |
parent | 6b7ce19161d352dd8f479e9fef6ffe8cefb46b3c (diff) | |
download | serenity-65b420f99699ce308b88a15b8144c76a2f682f50.zip |
Everywhere: Remove unused includes of AK/Memory.h
These instances were detected by searching for files that include
AK/Memory.h, but don't match the regex:
\\b(fast_u32_copy|fast_u32_fill|secure_zero|timing_safe_compare)\\b
This regex is pessimistic, so there might be more files that don't
actually use any memory function.
In theory, one might use LibCPP to detect things like this
automatically, but let's do this one step after another.
Diffstat (limited to 'AK/String.cpp')
-rw-r--r-- | AK/String.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/AK/String.cpp b/AK/String.cpp index 8c9afb0aee..2243968b3d 100644 --- a/AK/String.cpp +++ b/AK/String.cpp @@ -6,7 +6,6 @@ #include <AK/Checked.h> #include <AK/Format.h> -#include <AK/Memory.h> #include <AK/String.h> #include <AK/StringBuilder.h> #include <AK/Utf8View.h> |