diff options
author | Ben Wiederhake <BenWiederhake.GitHub@gmx.de> | 2023-01-02 18:15:28 +0100 |
---|---|---|
committer | Sam Atkins <atkinssj@gmail.com> | 2023-01-02 20:08:35 +0000 |
commit | a8391d5a6093b6136db17fedc0e5a77e0bbac1ae (patch) | |
tree | 1d261a0fa92346111616eb6009d889fcbfe97989 /Userland/Libraries/LibGPU/Device.h | |
parent | add6be4c6471017a20c4318366a5f247420167a9 (diff) | |
download | serenity-a8391d5a6093b6136db17fedc0e5a77e0bbac1ae.zip |
Everywhere: Remove unused includes of AK/Array.h
These instances were detected by searching for files that include
Array.h, but don't match the regex:
\\b(Array(?!\.h>)|iota_array|integer_sequence_generate_array)\\b
These are the three symbols defined by Array.h.
In theory, one might use LibCPP to detect things like this
automatically, but let's do this one step after another.
Diffstat (limited to 'Userland/Libraries/LibGPU/Device.h')
-rw-r--r-- | Userland/Libraries/LibGPU/Device.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Userland/Libraries/LibGPU/Device.h b/Userland/Libraries/LibGPU/Device.h index 59d5ea993a..b957505c9d 100644 --- a/Userland/Libraries/LibGPU/Device.h +++ b/Userland/Libraries/LibGPU/Device.h @@ -7,7 +7,6 @@ #pragma once -#include <AK/Array.h> #include <AK/NonnullRefPtr.h> #include <AK/Vector.h> #include <LibGPU/DeviceInfo.h> |