summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCore
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2023-04-24 07:39:55 +0200
committerAndreas Kling <kling@serenityos.org>2023-04-25 14:48:40 +0200
commit8e7d7b0ec26ed0004df6ca08ecd9d5f298f5c108 (patch)
tree37c2c72a38dda47fad45d533854864fbcbfe05fc /Userland/Libraries/LibCore
parent029f5b0dad4885920078775644ca292b8aeac4b8 (diff)
downloadserenity-8e7d7b0ec26ed0004df6ca08ecd9d5f298f5c108.zip
LibCore: Remove some unnecessary includes from EventLoop.h
Diffstat (limited to 'Userland/Libraries/LibCore')
-rw-r--r--Userland/Libraries/LibCore/EventLoop.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/Userland/Libraries/LibCore/EventLoop.h b/Userland/Libraries/LibCore/EventLoop.h
index 75be2f3c81..7a0b10b5cc 100644
--- a/Userland/Libraries/LibCore/EventLoop.h
+++ b/Userland/Libraries/LibCore/EventLoop.h
@@ -10,18 +10,11 @@
#include <AK/Forward.h>
#include <AK/Function.h>
-#include <AK/HashMap.h>
#include <AK/Noncopyable.h>
#include <AK/NonnullOwnPtr.h>
-#include <AK/NonnullRefPtr.h>
#include <AK/Time.h>
-#include <AK/Vector.h>
-#include <AK/WeakPtr.h>
#include <LibCore/Event.h>
#include <LibCore/Forward.h>
-#include <LibThreading/MutexProtected.h>
-#include <sys/time.h>
-#include <sys/types.h>
namespace Core {