Everywhere: Move AK/Debug.h include to using files or remove

This commit is contained in:
Ben Wiederhake 2023-01-02 21:07:18 +01:00 committed by Tim Flynn
parent a55360781b
commit 8a331d4fa0
20 changed files with 8 additions and 12 deletions

View file

@ -4,7 +4,6 @@
* SPDX-License-Identifier: BSD-2-Clause * SPDX-License-Identifier: BSD-2-Clause
*/ */
#include <AK/Debug.h>
#include <AK/DeprecatedString.h> #include <AK/DeprecatedString.h>
#include <AK/LexicalPath.h> #include <AK/LexicalPath.h>
#include <AK/SourceGenerator.h> #include <AK/SourceGenerator.h>

View file

@ -6,6 +6,7 @@
#include <LibTest/TestCase.h> // import first, to prevent warning of VERIFY* redefinition #include <LibTest/TestCase.h> // import first, to prevent warning of VERIFY* redefinition
#include <AK/Debug.h>
#include <AK/StringBuilder.h> #include <AK/StringBuilder.h>
#include <AK/Tuple.h> #include <AK/Tuple.h>
#include <LibRegex/Regex.h> #include <LibRegex/Regex.h>

View file

@ -6,6 +6,7 @@
#include "FileDB.h" #include "FileDB.h"
#include <AK/Debug.h>
#include <AK/LexicalPath.h> #include <AK/LexicalPath.h>
#include <AK/NonnullRefPtr.h> #include <AK/NonnullRefPtr.h>

View file

@ -9,7 +9,6 @@
#include "MmapRegion.h" #include "MmapRegion.h"
#include "SimpleRegion.h" #include "SimpleRegion.h"
#include "SoftCPU.h" #include "SoftCPU.h"
#include <AK/Debug.h>
#include <AK/FileStream.h> #include <AK/FileStream.h>
#include <AK/Format.h> #include <AK/Format.h>
#include <AK/LexicalPath.h> #include <AK/LexicalPath.h>

View file

@ -7,7 +7,6 @@
* SPDX-License-Identifier: BSD-2-Clause * SPDX-License-Identifier: BSD-2-Clause
*/ */
#include <AK/Debug.h>
#include <AK/Optional.h> #include <AK/Optional.h>
#include <AK/QuickSort.h> #include <AK/QuickSort.h>
#include <AK/StringBuilder.h> #include <AK/StringBuilder.h>

View file

@ -4,7 +4,6 @@
* SPDX-License-Identifier: BSD-2-Clause * SPDX-License-Identifier: BSD-2-Clause
*/ */
#include <AK/Debug.h>
#include <LibHTTP/HttpsJob.h> #include <LibHTTP/HttpsJob.h>
namespace HTTP { namespace HTTP {

View file

@ -5,6 +5,7 @@
* SPDX-License-Identifier: BSD-2-Clause * SPDX-License-Identifier: BSD-2-Clause
*/ */
#include <AK/Debug.h>
#include <AK/QuickSort.h> #include <AK/QuickSort.h>
#include <LibJS/Interpreter.h> #include <LibJS/Interpreter.h>
#include <LibJS/Parser.h> #include <LibJS/Parser.h>

View file

@ -5,7 +5,6 @@
* SPDX-License-Identifier: BSD-2-Clause * SPDX-License-Identifier: BSD-2-Clause
*/ */
#include <AK/Debug.h>
#include <AK/ScopeGuard.h> #include <AK/ScopeGuard.h>
#include <AK/StringBuilder.h> #include <AK/StringBuilder.h>
#include <LibMarkdown/Text.h> #include <LibMarkdown/Text.h>

View file

@ -8,7 +8,6 @@
#include "RegexDebug.h" #include "RegexDebug.h"
#include <AK/BinarySearch.h> #include <AK/BinarySearch.h>
#include <AK/CharacterTypes.h> #include <AK/CharacterTypes.h>
#include <AK/Debug.h>
#include <AK/StringBuilder.h> #include <AK/StringBuilder.h>
#include <LibUnicode/CharacterTypes.h> #include <LibUnicode/CharacterTypes.h>

View file

@ -6,7 +6,6 @@
#pragma once #pragma once
#include <AK/Debug.h>
#include <AK/StringBuilder.h> #include <AK/StringBuilder.h>
#include <LibRegex/RegexMatcher.h> #include <LibRegex/RegexMatcher.h>

View file

@ -4,6 +4,7 @@
* SPDX-License-Identifier: BSD-2-Clause * SPDX-License-Identifier: BSD-2-Clause
*/ */
#include <AK/Debug.h>
#include <AK/QuickSort.h> #include <AK/QuickSort.h>
#include <AK/RedBlackTree.h> #include <AK/RedBlackTree.h>
#include <AK/Stack.h> #include <AK/Stack.h>

View file

@ -9,6 +9,7 @@
#include "RegexDebug.h" #include "RegexDebug.h"
#include <AK/AnyOf.h> #include <AK/AnyOf.h>
#include <AK/CharacterTypes.h> #include <AK/CharacterTypes.h>
#include <AK/Debug.h>
#include <AK/DeprecatedString.h> #include <AK/DeprecatedString.h>
#include <AK/GenericLexer.h> #include <AK/GenericLexer.h>
#include <AK/ScopeGuard.h> #include <AK/ScopeGuard.h>

View file

@ -6,7 +6,6 @@
#pragma once #pragma once
#include <AK/Debug.h>
#include <AK/Vector.h> #include <AK/Vector.h>
#include <LibSQL/Forward.h> #include <LibSQL/Forward.h>
#include <LibSQL/TupleDescriptor.h> #include <LibSQL/TupleDescriptor.h>

View file

@ -5,6 +5,7 @@
* SPDX-License-Identifier: BSD-2-Clause * SPDX-License-Identifier: BSD-2-Clause
*/ */
#include <AK/Debug.h>
#include <AK/Function.h> #include <AK/Function.h>
#include <AK/Optional.h> #include <AK/Optional.h>
#include <AK/Time.h> #include <AK/Time.h>

View file

@ -8,7 +8,6 @@
#pragma once #pragma once
#include <AK/Concepts.h> #include <AK/Concepts.h>
#include <AK/Debug.h>
#include <AK/IntegralMath.h> #include <AK/IntegralMath.h>
#include <AK/NonnullOwnPtrVector.h> #include <AK/NonnullOwnPtrVector.h>
#include <AK/Optional.h> #include <AK/Optional.h>

View file

@ -6,6 +6,7 @@
#pragma once #pragma once
#include <AK/Debug.h>
#include <AK/HashTable.h> #include <AK/HashTable.h>
#include <AK/SourceLocation.h> #include <AK/SourceLocation.h>
#include <AK/Tuple.h> #include <AK/Tuple.h>

View file

@ -4,6 +4,7 @@
* SPDX-License-Identifier: BSD-2-Clause * SPDX-License-Identifier: BSD-2-Clause
*/ */
#include <AK/Debug.h>
#include <AK/LEB128.h> #include <AK/LEB128.h>
#include <AK/ScopeGuard.h> #include <AK/ScopeGuard.h>
#include <AK/ScopeLogger.h> #include <AK/ScopeLogger.h>

View file

@ -7,7 +7,6 @@
#pragma once #pragma once
#include <AK/Badge.h> #include <AK/Badge.h>
#include <AK/Debug.h>
#include <AK/DeprecatedString.h> #include <AK/DeprecatedString.h>
#include <AK/DistinctNumeric.h> #include <AK/DistinctNumeric.h>
#include <AK/MemoryStream.h> #include <AK/MemoryStream.h>

View file

@ -5,7 +5,6 @@
* SPDX-License-Identifier: BSD-2-Clause * SPDX-License-Identifier: BSD-2-Clause
*/ */
#include <AK/Debug.h>
#include <AK/OwnPtr.h> #include <AK/OwnPtr.h>
#include <LibGfx/Painter.h> #include <LibGfx/Painter.h>
#include <LibGfx/Quad.h> #include <LibGfx/Quad.h>

View file

@ -4,7 +4,6 @@
* SPDX-License-Identifier: BSD-2-Clause * SPDX-License-Identifier: BSD-2-Clause
*/ */
#include <AK/Debug.h>
#include <FileSystemAccessServer/ConnectionFromClient.h> #include <FileSystemAccessServer/ConnectionFromClient.h>
#include <LibCore/File.h> #include <LibCore/File.h>
#include <LibCore/IODevice.h> #include <LibCore/IODevice.h>