diff options
author | Brian Gianforcaro <bgianf@serenityos.org> | 2021-07-31 03:52:33 -0700 |
---|---|---|
committer | Gunnar Beutner <gunnar@beutner.name> | 2021-08-01 08:10:16 +0200 |
commit | a51e6547aa337ee3286d8ac5da162cede517c877 (patch) | |
tree | 6607ffd572056aaebc3e2b834a98bf596d2614ef /Userland/Applications/Debugger | |
parent | 4374e1e213c81791be4c44e27ce05cc2e30896a7 (diff) | |
download | serenity-a51e6547aa337ee3286d8ac5da162cede517c877.zip |
Applications: Remove unused header includes
Diffstat (limited to 'Userland/Applications/Debugger')
-rw-r--r-- | Userland/Applications/Debugger/main.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Userland/Applications/Debugger/main.cpp b/Userland/Applications/Debugger/main.cpp index 8e8941fb0e..88f8b218be 100644 --- a/Userland/Applications/Debugger/main.cpp +++ b/Userland/Applications/Debugger/main.cpp @@ -6,13 +6,11 @@ #include <AK/Assertions.h> #include <AK/ByteBuffer.h> -#include <AK/Demangle.h> #include <AK/OwnPtr.h> #include <AK/Platform.h> #include <AK/StringBuilder.h> #include <LibC/sys/arch/i386/regs.h> #include <LibCore/ArgsParser.h> -#include <LibCore/File.h> #include <LibDebug/DebugInfo.h> #include <LibDebug/DebugSession.h> #include <LibLine/Editor.h> @@ -21,7 +19,6 @@ #include <signal.h> #include <stdio.h> #include <stdlib.h> -#include <string.h> #include <unistd.h> RefPtr<Line::Editor> editor; |