event/Loop: add missing #ifdef

This commit is contained in:
Max Kellermann 2020-10-14 14:37:28 +02:00
parent 38dab040b3
commit 0e951da64b

View File

@ -21,9 +21,12 @@
#include "TimerEvent.hxx"
#include "SocketMonitor.hxx"
#include "IdleEvent.hxx"
#include "DeferEvent.hxx"
#include "util/ScopeExit.hxx"
#ifdef HAVE_THREADED_EVENT_LOOP
#include "DeferEvent.hxx"
#endif
#ifdef HAVE_URING
#include "UringManager.hxx"
#include "util/PrintException.hxx"