summaryrefslogtreecommitdiff
path: root/Userland/DevTools/UserspaceEmulator
diff options
context:
space:
mode:
authorBen Wiederhake <BenWiederhake.GitHub@gmx.de>2023-01-02 15:15:14 +0100
committerTim Flynn <trflynn89@pm.me>2023-01-02 11:06:15 -0500
commitb83cb09db194f0e18ef76f36aea3801959295f22 (patch)
tree00ccdbb2c1e7766326cc2c3442f3de95cf1c0b8a /Userland/DevTools/UserspaceEmulator
parent9d61e59cebbbb1d4fc91d534cceb1316faf44e0b (diff)
downloadserenity-b83cb09db194f0e18ef76f36aea3801959295f22.zip
Everywhere: Fix badly-formatted includes
In 7c5e30daaa615ad3a2ef55222423a747ac0a1227, the focus was "only" on Userland/Libraries/, whereas this commit cleans up the remaining headers in the repo, and any new badly-formatted include.
Diffstat (limited to 'Userland/DevTools/UserspaceEmulator')
-rw-r--r--Userland/DevTools/UserspaceEmulator/SoftCPU.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/DevTools/UserspaceEmulator/SoftCPU.h b/Userland/DevTools/UserspaceEmulator/SoftCPU.h
index 4e1bc5d3c9..250e3e07cf 100644
--- a/Userland/DevTools/UserspaceEmulator/SoftCPU.h
+++ b/Userland/DevTools/UserspaceEmulator/SoftCPU.h
@@ -6,13 +6,13 @@
#pragma once
-#include "AK/Debug.h"
#include "Emulator.h"
#include "Region.h"
#include "SoftFPU.h"
#include "SoftVPU.h"
#include "ValueWithShadow.h"
#include <AK/ByteReader.h>
+#include <AK/Debug.h>
#include <LibX86/Instruction.h>
#include <LibX86/Interpreter.h>