diff options
author | Ben Wiederhake <BenWiederhake.GitHub@gmx.de> | 2021-01-31 15:10:45 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-02-08 18:03:57 +0100 |
commit | 0a2304ba0598281764318a616e74fb1685b7fbb0 (patch) | |
tree | 0809308220041c2d3e9674af4df8429ab8feaab7 /Userland | |
parent | 6e9fa350bca1e664b7295c0d10d3a68b3a3cf009 (diff) | |
download | serenity-0a2304ba0598281764318a616e74fb1685b7fbb0.zip |
Everywhere: Fix weird includes
Diffstat (limited to 'Userland')
5 files changed, 5 insertions, 5 deletions
diff --git a/Userland/Applications/Calculator/CalculatorWidget.cpp b/Userland/Applications/Calculator/CalculatorWidget.cpp index 083edae93b..df648640a0 100644 --- a/Userland/Applications/Calculator/CalculatorWidget.cpp +++ b/Userland/Applications/Calculator/CalculatorWidget.cpp @@ -26,8 +26,8 @@ */ #include "CalculatorWidget.h" -#include "Applications/Calculator/CalculatorGML.h" #include <AK/Assertions.h> +#include <Applications/Calculator/CalculatorGML.h> #include <LibGUI/Button.h> #include <LibGUI/Label.h> #include <LibGUI/TextBox.h> diff --git a/Userland/DevTools/HackStudio/LanguageClient.cpp b/Userland/DevTools/HackStudio/LanguageClient.cpp index 98341a046f..1afc59bd60 100644 --- a/Userland/DevTools/HackStudio/LanguageClient.cpp +++ b/Userland/DevTools/HackStudio/LanguageClient.cpp @@ -25,9 +25,9 @@ */ #include "LanguageClient.h" -#include "DevTools/HackStudio/LanguageServers/LanguageServerEndpoint.h" #include <AK/String.h> #include <AK/Vector.h> +#include <DevTools/HackStudio/LanguageServers/LanguageServerEndpoint.h> namespace HackStudio { diff --git a/Userland/DevTools/HackStudio/LanguageServers/Cpp/main.cpp b/Userland/DevTools/HackStudio/LanguageServers/Cpp/main.cpp index 197fd91f27..524d6d6f50 100644 --- a/Userland/DevTools/HackStudio/LanguageServers/Cpp/main.cpp +++ b/Userland/DevTools/HackStudio/LanguageServers/Cpp/main.cpp @@ -24,8 +24,8 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +#include "ClientConnection.h" #include <AK/LexicalPath.h> -#include <DevTools/HackStudio/LanguageServers/Cpp/ClientConnection.h> #include <LibCore/EventLoop.h> #include <LibCore/File.h> #include <LibCore/LocalServer.h> diff --git a/Userland/DevTools/HackStudio/LanguageServers/Shell/main.cpp b/Userland/DevTools/HackStudio/LanguageServers/Shell/main.cpp index 90e3f62271..356eced9ff 100644 --- a/Userland/DevTools/HackStudio/LanguageServers/Shell/main.cpp +++ b/Userland/DevTools/HackStudio/LanguageServers/Shell/main.cpp @@ -24,8 +24,8 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +#include "ClientConnection.h" #include <AK/LexicalPath.h> -#include <DevTools/HackStudio/LanguageServers/Shell/ClientConnection.h> #include <LibCore/EventLoop.h> #include <LibCore/File.h> #include <LibCore/LocalServer.h> diff --git a/Userland/Utilities/tree.cpp b/Userland/Utilities/tree.cpp index 5f6dd334a5..7212a56fc2 100644 --- a/Userland/Utilities/tree.cpp +++ b/Userland/Utilities/tree.cpp @@ -32,7 +32,7 @@ #include <AK/Vector.h> #include <LibCore/ArgsParser.h> #include <LibCore/DirIterator.h> -#include <cstdio> +#include <stdio.h> #include <sys/stat.h> static bool flag_show_hidden_files = false; |