summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMuhammad Zahalqa <m@tryfinally.com>2023-05-14 14:41:01 +0300
committerJelle Raaijmakers <jelle@gmta.nl>2023-05-18 22:49:02 +0200
commit0f0d16bbecc4374e7b00be101c60623da300c40a (patch)
tree06a2cdfb7cc7033f44cb3e5beb5f45019ce049ba
parent1b9c31da12d3fd485cade510811668226804a55e (diff)
downloadserenity-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.cpp1
-rw-r--r--AK/Base64.h1
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>