From bf59d9e82482fc0d76616193e2034d32376474e7 Mon Sep 17 00:00:00 2001 From: Ali Mohammad Pur Date: Thu, 11 Nov 2021 13:43:44 +0330 Subject: [PATCH] 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. --- Userland/Libraries/LibCrypto/PK/Code/EMSA_PSS.h | 1 + Userland/Libraries/LibJS/Runtime/PropertyAttributes.h | 1 + Userland/Libraries/LibPDF/Command.h | 1 + Userland/Libraries/LibPDF/Reader.h | 1 + Userland/Libraries/LibPDF/XRefTable.h | 1 + 5 files changed, 5 insertions(+) diff --git a/Userland/Libraries/LibCrypto/PK/Code/EMSA_PSS.h b/Userland/Libraries/LibCrypto/PK/Code/EMSA_PSS.h index 3193c772d4..d80ca5e6e9 100644 --- a/Userland/Libraries/LibCrypto/PK/Code/EMSA_PSS.h +++ b/Userland/Libraries/LibCrypto/PK/Code/EMSA_PSS.h @@ -9,6 +9,7 @@ #include #include #include +#include #include namespace Crypto { diff --git a/Userland/Libraries/LibJS/Runtime/PropertyAttributes.h b/Userland/Libraries/LibJS/Runtime/PropertyAttributes.h index 8af1a8a4cc..a31b0e048f 100644 --- a/Userland/Libraries/LibJS/Runtime/PropertyAttributes.h +++ b/Userland/Libraries/LibJS/Runtime/PropertyAttributes.h @@ -10,6 +10,7 @@ #include #include #include +#include namespace JS { diff --git a/Userland/Libraries/LibPDF/Command.h b/Userland/Libraries/LibPDF/Command.h index 967687d853..01f69aedc0 100644 --- a/Userland/Libraries/LibPDF/Command.h +++ b/Userland/Libraries/LibPDF/Command.h @@ -9,6 +9,7 @@ #include #include #include +#include #include #define ENUMERATE_COMMANDS(V) \ diff --git a/Userland/Libraries/LibPDF/Reader.h b/Userland/Libraries/LibPDF/Reader.h index ba03af849c..d9ae301ac8 100644 --- a/Userland/Libraries/LibPDF/Reader.h +++ b/Userland/Libraries/LibPDF/Reader.h @@ -11,6 +11,7 @@ #include #include #include +#include namespace PDF { diff --git a/Userland/Libraries/LibPDF/XRefTable.h b/Userland/Libraries/LibPDF/XRefTable.h index e6b7a490ca..5ac0cd355f 100644 --- a/Userland/Libraries/LibPDF/XRefTable.h +++ b/Userland/Libraries/LibPDF/XRefTable.h @@ -9,6 +9,7 @@ #include #include #include +#include namespace PDF {