diff options
author | Andreas Kling <kling@serenityos.org> | 2021-08-07 21:34:11 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-08-08 00:03:45 +0200 |
commit | c94c15d45cbcca4e753c94665d698bb09d96313c (patch) | |
tree | 19352d5302f16c7a79d733786c72a6f32232a6b6 /Kernel/Net/UDPSocket.cpp | |
parent | eb60cb156da0f88d0f6930fb9cc32012ac56e28e (diff) | |
download | serenity-c94c15d45cbcca4e753c94665d698bb09d96313c.zip |
Everywhere: Replace AK::Singleton => Singleton
Diffstat (limited to 'Kernel/Net/UDPSocket.cpp')
-rw-r--r-- | Kernel/Net/UDPSocket.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Net/UDPSocket.cpp b/Kernel/Net/UDPSocket.cpp index ef5783137f..fc6217ebf2 100644 --- a/Kernel/Net/UDPSocket.cpp +++ b/Kernel/Net/UDPSocket.cpp @@ -22,7 +22,7 @@ void UDPSocket::for_each(Function<void(const UDPSocket&)> callback) }); } -static AK::Singleton<ProtectedValue<HashMap<u16, UDPSocket*>>> s_map; +static Singleton<ProtectedValue<HashMap<u16, UDPSocket*>>> s_map; ProtectedValue<HashMap<u16, UDPSocket*>>& UDPSocket::sockets_by_port() { |