Skip to content

Commit

Permalink
Everywhere: Fix weird includes
Browse files Browse the repository at this point in the history
  • Loading branch information
BenWiederhake authored and awesomekling committed Feb 8, 2021
1 parent 6e9fa35 commit 0a2304b
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion AK/HashFunctions.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

#pragma once

#include "Types.h"
#include <AK/Types.h>

constexpr unsigned int_hash(u32 key)
{
Expand Down
2 changes: 1 addition & 1 deletion Kernel/Process.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 {

Expand Down
2 changes: 1 addition & 1 deletion Userland/Applications/Calculator/CalculatorWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion Userland/DevTools/HackStudio/LanguageClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 {

Expand Down
2 changes: 1 addition & 1 deletion Userland/DevTools/HackStudio/LanguageServers/Cpp/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion Userland/Utilities/tree.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 0a2304b

Please sign in to comment.