summaryrefslogtreecommitdiff
path: root/Libraries/LibCore/Command.cpp
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-11-15 13:11:21 +0100
committerAndreas Kling <kling@serenityos.org>2020-11-15 13:11:21 +0100
commitadabcf24ec079d38f467dea690ffcdfecfd03d68 (patch)
tree7043f6d545c198e4e6cd1ec259f70c4987a8a20e /Libraries/LibCore/Command.cpp
parent9ffdb7111183aa9eb7e107a38d99e79c81444760 (diff)
downloadserenity-adabcf24ec079d38f467dea690ffcdfecfd03d68.zip
Everywhere: Add missing <AK/ByteBuffer.h> includes
All of these files were getting ByteBuffer.h from someone else and then using it. Let's include it explicitly.
Diffstat (limited to 'Libraries/LibCore/Command.cpp')
-rw-r--r--Libraries/LibCore/Command.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Libraries/LibCore/Command.cpp b/Libraries/LibCore/Command.cpp
index 61ed2178f8..e4fb717473 100644
--- a/Libraries/LibCore/Command.cpp
+++ b/Libraries/LibCore/Command.cpp
@@ -25,6 +25,7 @@
*/
#include "Command.h"
+#include <AK/ByteBuffer.h>
#include <AK/LogStream.h>
#include <AK/ScopeGuard.h>
#include <LibCore/File.h>