summaryrefslogtreecommitdiff
path: root/Kernel/Devices/KeyboardDevice.cpp
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-03-23 13:45:10 +0100
committerAndreas Kling <kling@serenityos.org>2020-03-23 13:48:44 +0100
commit7d862dd5fc3a37093462d5ff187403c9ef680a7a (patch)
tree9d1edc46f76bda21366ea5105605422271560447 /Kernel/Devices/KeyboardDevice.cpp
parent1dd71bd68f85c3263ec3a2ee4c735e9cc189af6b (diff)
downloadserenity-7d862dd5fc3a37093462d5ff187403c9ef680a7a.zip
AK: Reduce header dependency graph of String.h
String.h no longer pulls in StringView.h. We do this by moving a bunch of String functions out-of-line.
Diffstat (limited to 'Kernel/Devices/KeyboardDevice.cpp')
-rw-r--r--Kernel/Devices/KeyboardDevice.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/Devices/KeyboardDevice.cpp b/Kernel/Devices/KeyboardDevice.cpp
index 2a5f251305..3ee979bc28 100644
--- a/Kernel/Devices/KeyboardDevice.cpp
+++ b/Kernel/Devices/KeyboardDevice.cpp
@@ -26,6 +26,7 @@
#include <AK/Assertions.h>
#include <AK/ByteBuffer.h>
+#include <AK/StringView.h>
#include <AK/Types.h>
#include <Kernel/Arch/i386/CPU.h>
#include <Kernel/Devices/KeyboardDevice.h>