Everywhere: Fix weird includes

This commit is contained in:
Ben Wiederhake 2021-01-31 15:10:45 +01:00 committed by Andreas Kling
parent 6e9fa350bc
commit 0a2304ba05
7 changed files with 7 additions and 7 deletions

View file

@ -26,7 +26,7 @@
#pragma once
#include "Types.h"
#include <AK/Types.h>
constexpr unsigned int_hash(u32 key)
{

View file

@ -49,7 +49,7 @@
#include <Kernel/VM/AllocationStrategy.h>
#include <Kernel/VM/RangeAllocator.h>
#include <LibC/signal_numbers.h>
#include <Libraries/LibELF/exec_elf.h>
#include <LibELF/exec_elf.h>
namespace Kernel {

View file

@ -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>

View file

@ -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 {

View file

@ -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>

View file

@ -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>

View file

@ -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;