From a356e4815098e5398e103aa69865bd6c88f7ad36 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 16 Feb 2020 01:27:42 +0100 Subject: Kernel: Move all code into the Kernel namespace --- Kernel/Net/LocalSocket.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Kernel/Net/LocalSocket.h') diff --git a/Kernel/Net/LocalSocket.h b/Kernel/Net/LocalSocket.h index e989884cc2..0929b0d90f 100644 --- a/Kernel/Net/LocalSocket.h +++ b/Kernel/Net/LocalSocket.h @@ -30,6 +30,8 @@ #include #include +namespace Kernel { + class FileDescription; class LocalSocket final : public Socket, public InlineLinkedListNode { @@ -100,3 +102,5 @@ private: LocalSocket* m_prev { nullptr }; LocalSocket* m_next { nullptr }; }; + +} -- cgit v1.2.3