diff options
author | Ben Wiederhake <BenWiederhake.GitHub@gmx.de> | 2023-01-02 15:15:14 +0100 |
---|---|---|
committer | Tim Flynn <trflynn89@pm.me> | 2023-01-02 11:06:15 -0500 |
commit | b83cb09db194f0e18ef76f36aea3801959295f22 (patch) | |
tree | 00ccdbb2c1e7766326cc2c3442f3de95cf1c0b8a /AK/FlyString.h | |
parent | 9d61e59cebbbb1d4fc91d534cceb1316faf44e0b (diff) | |
download | serenity-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 'AK/FlyString.h')
-rw-r--r-- | AK/FlyString.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/AK/FlyString.h b/AK/FlyString.h index 5d5a1e6ed3..74e18dbb8d 100644 --- a/AK/FlyString.h +++ b/AK/FlyString.h @@ -6,8 +6,8 @@ #pragma once -#include "AK/StringUtils.h" #include <AK/DeprecatedString.h> +#include <AK/StringUtils.h> namespace AK { |