diff options
author | Tom <tomut@yahoo.com> | 2020-08-21 11:39:30 -0600 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-08-22 10:46:24 +0200 |
commit | 5a98e329d157a2db8379e0c97c6bdc1328027843 (patch) | |
tree | 99fb2928e046fa7a6f69270ebed6ff8a8309dacd /Kernel/Net/LocalSocket.cpp | |
parent | 8a75e0b892ab8e1c4765ac4e2f7289b258f1bf5a (diff) | |
download | serenity-5a98e329d157a2db8379e0c97c6bdc1328027843.zip |
AK: Get rid of make_singleton function
Just default the InitFunction template argument.
Diffstat (limited to 'Kernel/Net/LocalSocket.cpp')
-rw-r--r-- | Kernel/Net/LocalSocket.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Net/LocalSocket.cpp b/Kernel/Net/LocalSocket.cpp index 6750f93403..ca7863bd9c 100644 --- a/Kernel/Net/LocalSocket.cpp +++ b/Kernel/Net/LocalSocket.cpp @@ -38,7 +38,7 @@ namespace Kernel { -static auto s_list = AK::make_singleton<Lockable<InlineLinkedList<LocalSocket>>>(); +static AK::Singleton<Lockable<InlineLinkedList<LocalSocket>>> s_list; Lockable<InlineLinkedList<LocalSocket>>& LocalSocket::all_sockets() { |