diff options
author | Shannon Booth <shannon.ml.booth@gmail.com> | 2020-01-05 12:28:42 +1300 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2020-01-05 09:00:05 +0100 |
commit | 861f40f0143070e14ade4b45018ad882a57d5e63 (patch) | |
tree | 7628e41305da41575e172911a1ac353ed1170ee7 /Libraries/LibCore/CEventLoop.h | |
parent | d5fea1b2352912d727afc50e2c91504033988e0c (diff) | |
download | serenity-861f40f0143070e14ade4b45018ad882a57d5e63.zip |
AK+LibCore: Add an IDAllocator and use to allocate timer ids
Diffstat (limited to 'Libraries/LibCore/CEventLoop.h')
-rw-r--r-- | Libraries/LibCore/CEventLoop.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Libraries/LibCore/CEventLoop.h b/Libraries/LibCore/CEventLoop.h index af942bef19..0121501d4f 100644 --- a/Libraries/LibCore/CEventLoop.h +++ b/Libraries/LibCore/CEventLoop.h @@ -85,7 +85,6 @@ private: }; static HashMap<int, NonnullOwnPtr<EventLoopTimer>>* s_timers; - static int s_next_timer_id; static HashTable<CNotifier*>* s_notifiers; |