summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCore
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-08-07 21:34:11 +0200
committerAndreas Kling <kling@serenityos.org>2021-08-08 00:03:45 +0200
commitc94c15d45cbcca4e753c94665d698bb09d96313c (patch)
tree19352d5302f16c7a79d733786c72a6f32232a6b6 /Userland/Libraries/LibCore
parenteb60cb156da0f88d0f6930fb9cc32012ac56e28e (diff)
downloadserenity-c94c15d45cbcca4e753c94665d698bb09d96313c.zip
Everywhere: Replace AK::Singleton => Singleton
Diffstat (limited to 'Userland/Libraries/LibCore')
-rw-r--r--Userland/Libraries/LibCore/EventLoop.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibCore/EventLoop.cpp b/Userland/Libraries/LibCore/EventLoop.cpp
index 886f5c8ab2..ed7611dd65 100644
--- a/Userland/Libraries/LibCore/EventLoop.cpp
+++ b/Userland/Libraries/LibCore/EventLoop.cpp
@@ -109,7 +109,7 @@ struct SignalHandlersInfo {
int next_signal_id { 0 };
};
-static AK::Singleton<SignalHandlersInfo> s_signals;
+static Singleton<SignalHandlersInfo> s_signals;
template<bool create_if_null = true>
inline SignalHandlersInfo* signals_info()
{