diff options
Diffstat (limited to 'Kernel/TimerQueue.cpp')
-rw-r--r-- | Kernel/TimerQueue.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/TimerQueue.cpp b/Kernel/TimerQueue.cpp index 41197d6861..d12e4ecd52 100644 --- a/Kernel/TimerQueue.cpp +++ b/Kernel/TimerQueue.cpp @@ -27,14 +27,14 @@ #include <AK/Function.h> #include <AK/NonnullOwnPtr.h> #include <AK/OwnPtr.h> +#include <AK/Singleton.h> #include <Kernel/Scheduler.h> -#include <Kernel/Singleton.h> #include <Kernel/Time/TimeManagement.h> #include <Kernel/TimerQueue.h> namespace Kernel { -static auto s_the = make_singleton<TimerQueue>(); +static auto s_the = AK::make_singleton<TimerQueue>(); TimerQueue& TimerQueue::the() { |