diff options
author | Muhammad Zahalqa <m@tryfinally.com> | 2023-05-14 14:41:01 +0300 |
---|---|---|
committer | Jelle Raaijmakers <jelle@gmta.nl> | 2023-05-18 22:49:02 +0200 |
commit | 0f0d16bbecc4374e7b00be101c60623da300c40a (patch) | |
tree | 06a2cdfb7cc7033f44cb3e5beb5f45019ce049ba | |
parent | 1b9c31da12d3fd485cade510811668226804a55e (diff) | |
download | serenity-0f0d16bbecc4374e7b00be101c60623da300c40a.zip |
AK: Include Array.h in Base64.h
Array.h should be included in Base64.h and removed from Base64.cpp
-rw-r--r-- | AK/Base64.cpp | 1 | ||||
-rw-r--r-- | AK/Base64.h | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/AK/Base64.cpp b/AK/Base64.cpp index 7b48de7eb2..2918ddb898 100644 --- a/AK/Base64.cpp +++ b/AK/Base64.cpp @@ -4,7 +4,6 @@ * SPDX-License-Identifier: BSD-2-Clause */ -#include <AK/Array.h> #include <AK/Assertions.h> #include <AK/Base64.h> #include <AK/CharacterTypes.h> diff --git a/AK/Base64.h b/AK/Base64.h index 3dbf8e3385..fcda960119 100644 --- a/AK/Base64.h +++ b/AK/Base64.h @@ -6,6 +6,7 @@ #pragma once +#include <AK/Array.h> #include <AK/ByteBuffer.h> #include <AK/Error.h> #include <AK/String.h> |