Skip to content

Commit 3038eda

Browse files
boricjlinusg
authored andcommitted
Utilities: Correct non-standard assert macros includes
1 parent b9d3df7 commit 3038eda

29 files changed

+29
-1
lines changed

Userland/Utilities/arp.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* SPDX-License-Identifier: BSD-2-Clause
55
*/
66

7+
#include <AK/Assertions.h>
78
#include <AK/ByteBuffer.h>
89
#include <AK/JsonObject.h>
910
#include <AK/String.h>

Userland/Utilities/base64.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* SPDX-License-Identifier: BSD-2-Clause
55
*/
66

7+
#include <AK/Assertions.h>
78
#include <AK/Base64.h>
89
#include <AK/ByteBuffer.h>
910
#include <LibCore/ArgsParser.h>

Userland/Utilities/copy.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* SPDX-License-Identifier: BSD-2-Clause
55
*/
66

7+
#include <AK/Assertions.h>
78
#include <AK/ByteBuffer.h>
89
#include <AK/String.h>
910
#include <AK/StringBuilder.h>

Userland/Utilities/crash.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
* SPDX-License-Identifier: BSD-2-Clause
66
*/
77

8+
#include <AK/Assertions.h>
89
#include <AK/Function.h>
910
#include <AK/String.h>
1011
#include <Kernel/IO.h>

Userland/Utilities/df.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* SPDX-License-Identifier: BSD-2-Clause
55
*/
66

7+
#include <AK/Assertions.h>
78
#include <AK/ByteBuffer.h>
89
#include <AK/JsonArray.h>
910
#include <AK/JsonObject.h>

Userland/Utilities/du.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* SPDX-License-Identifier: BSD-2-Clause
55
*/
66

7+
#include <AK/Assertions.h>
78
#include <AK/ByteBuffer.h>
89
#include <AK/LexicalPath.h>
910
#include <AK/String.h>

Userland/Utilities/expr.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* SPDX-License-Identifier: BSD-2-Clause
55
*/
66

7+
#include <AK/Assertions.h>
78
#include <AK/GenericLexer.h>
89
#include <AK/NonnullOwnPtr.h>
910
#include <AK/OwnPtr.h>

Userland/Utilities/find.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* SPDX-License-Identifier: BSD-2-Clause
55
*/
66

7+
#include <AK/Assertions.h>
78
#include <AK/LexicalPath.h>
89
#include <AK/NonnullOwnPtr.h>
910
#include <AK/OwnPtr.h>

Userland/Utilities/grep.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* SPDX-License-Identifier: BSD-2-Clause
55
*/
66

7+
#include <AK/Assertions.h>
78
#include <AK/ByteBuffer.h>
89
#include <AK/ScopeGuard.h>
910
#include <AK/String.h>

Userland/Utilities/gron.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* SPDX-License-Identifier: BSD-2-Clause
55
*/
66

7+
#include <AK/Assertions.h>
78
#include <AK/ByteBuffer.h>
89
#include <AK/JsonArray.h>
910
#include <AK/JsonObject.h>

0 commit comments

Comments
 (0)