summaryrefslogtreecommitdiff
path: root/Libraries/LibThread/BackgroundAction.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Libraries/LibThread/BackgroundAction.cpp')
-rw-r--r--Libraries/LibThread/BackgroundAction.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Libraries/LibThread/BackgroundAction.cpp b/Libraries/LibThread/BackgroundAction.cpp
index f2545d0a5d..a2880dfb3f 100644
--- a/Libraries/LibThread/BackgroundAction.cpp
+++ b/Libraries/LibThread/BackgroundAction.cpp
@@ -24,10 +24,10 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+#include <AK/Queue.h>
#include <LibThread/BackgroundAction.h>
-#include <LibThread/Thread.h>
#include <LibThread/Lock.h>
-#include <AK/Queue.h>
+#include <LibThread/Thread.h>
static LibThread::Lockable<Queue<Function<void()>>>* s_all_actions;
static LibThread::Thread* s_background_thread;