summaryrefslogtreecommitdiff
path: root/Libraries/LibThread/BackgroundAction.cpp
diff options
context:
space:
mode:
authorBen Wiederhake <BenWiederhake.GitHub@gmx.de>2020-09-18 09:49:51 +0200
committerAndreas Kling <kling@serenityos.org>2020-09-25 21:18:17 +0200
commit08f9bc26a6b279d0f09be13d7305ad8b2f094884 (patch)
tree5091688b83f9ceabc7aeff0daa5c167460832b1f /Libraries/LibThread/BackgroundAction.cpp
parentede5dbd7b3ec1c7240d6ca2693a5ada307338b4c (diff)
downloadserenity-08f9bc26a6b279d0f09be13d7305ad8b2f094884.zip
Meta+LibHTTP through LibWeb: Make clang-format-10 clean
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;