diff options
author | Ben Wiederhake <BenWiederhake.GitHub@gmx.de> | 2020-09-18 09:49:51 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-09-25 21:18:17 +0200 |
commit | 08f9bc26a6b279d0f09be13d7305ad8b2f094884 (patch) | |
tree | 5091688b83f9ceabc7aeff0daa5c167460832b1f /Libraries/LibThread/BackgroundAction.cpp | |
parent | ede5dbd7b3ec1c7240d6ca2693a5ada307338b4c (diff) | |
download | serenity-08f9bc26a6b279d0f09be13d7305ad8b2f094884.zip |
Meta+LibHTTP through LibWeb: Make clang-format-10 clean
Diffstat (limited to 'Libraries/LibThread/BackgroundAction.cpp')
-rw-r--r-- | Libraries/LibThread/BackgroundAction.cpp | 4 |
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; |