Images 💾

Last commit ⭐

commit 65b420f99699ce308b88a15b8144c76a2f682f50
Author:     Ben Wiederhake <BenWiederhake.GitHub@gmx.de>
AuthorDate: Mon Jan 2 16:57:12 2023 +0100
Commit:     Tim Flynn <trflynn89@pm.me>
CommitDate: Mon Jan 2 20:27:20 2023 -0500

    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.