Skip to content

Commit

Permalink
AK: Include Array.h in Base64.h
Browse files Browse the repository at this point in the history
Array.h should be included in Base64.h and removed from Base64.cpp
  • Loading branch information
tryfinally authored and gmta committed May 18, 2023
1 parent 1b9c31d commit 0f0d16b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion AK/Base64.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
1 change: 1 addition & 0 deletions AK/Base64.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

#pragma once

#include <AK/Array.h>
#include <AK/ByteBuffer.h>
#include <AK/Error.h>
#include <AK/String.h>
Expand Down

0 comments on commit 0f0d16b

Please sign in to comment.