Bläddra i källkod

Userland: Include Vector.h in a few places to make HeaderCheck happy

This header was being transitively pulled in, but that no longer happens
after 5f7d008791f9e358638283dc2f0d709a601344ff.
Ali Mohammad Pur 3 år sedan
förälder
incheckning
bf59d9e824

+ 1 - 0
Userland/Libraries/LibCrypto/PK/Code/EMSA_PSS.h

@@ -9,6 +9,7 @@
 #include <AK/Array.h>
 #include <AK/Format.h>
 #include <AK/Random.h>
+#include <AK/Vector.h>
 #include <LibCrypto/PK/Code/Code.h>
 
 namespace Crypto {

+ 1 - 0
Userland/Libraries/LibJS/Runtime/PropertyAttributes.h

@@ -10,6 +10,7 @@
 #include <AK/Format.h>
 #include <AK/String.h>
 #include <AK/Types.h>
+#include <AK/Vector.h>
 
 namespace JS {
 

+ 1 - 0
Userland/Libraries/LibPDF/Command.h

@@ -9,6 +9,7 @@
 #include <AK/Format.h>
 #include <AK/String.h>
 #include <AK/StringBuilder.h>
+#include <AK/Vector.h>
 #include <LibPDF/Value.h>
 
 #define ENUMERATE_COMMANDS(V)                                                            \

+ 1 - 0
Userland/Libraries/LibPDF/Reader.h

@@ -11,6 +11,7 @@
 #include <AK/ScopeGuard.h>
 #include <AK/Span.h>
 #include <AK/String.h>
+#include <AK/Vector.h>
 
 namespace PDF {
 

+ 1 - 0
Userland/Libraries/LibPDF/XRefTable.h

@@ -9,6 +9,7 @@
 #include <AK/Format.h>
 #include <AK/RefCounted.h>
 #include <AK/String.h>
+#include <AK/Vector.h>
 
 namespace PDF {