1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-05 19:14:54 +00:00

AK: Include Array.h in Base64.h

Array.h should be included in Base64.h and removed from Base64.cpp
This commit is contained in:
Muhammad Zahalqa 2023-05-14 14:41:01 +03:00 committed by Jelle Raaijmakers
parent 1b9c31da12
commit 0f0d16bbec
2 changed files with 1 additions and 1 deletions

View File

@ -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>

View File

@ -6,6 +6,7 @@
#pragma once
#include <AK/Array.h>
#include <AK/ByteBuffer.h>
#include <AK/Error.h>
#include <AK/String.h>