diff options
author | Timothy Flynn <trflynn89@pm.me> | 2022-11-15 11:32:00 -0500 |
---|---|---|
committer | Tim Flynn <trflynn89@pm.me> | 2022-11-15 13:25:51 -0500 |
commit | 4fd9e3ab080582de0e508d29bc3aee808c35174f (patch) | |
tree | 3a6a3d8b801830ebbd42ee929fcf27221a23e8a6 /Userland/Libraries/LibFileSystemAccessClient | |
parent | 05f41382bb527fbf2bb47340ad065b36f2e7409f (diff) | |
download | serenity-4fd9e3ab080582de0e508d29bc3aee808c35174f.zip |
Userland: Remove workarounds for LibIPC include order sensitivity
Diffstat (limited to 'Userland/Libraries/LibFileSystemAccessClient')
-rw-r--r-- | Userland/Libraries/LibFileSystemAccessClient/Client.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Userland/Libraries/LibFileSystemAccessClient/Client.cpp b/Userland/Libraries/LibFileSystemAccessClient/Client.cpp index 00bf0382e7..3c6f68bc34 100644 --- a/Userland/Libraries/LibFileSystemAccessClient/Client.cpp +++ b/Userland/Libraries/LibFileSystemAccessClient/Client.cpp @@ -5,13 +5,10 @@ * SPDX-License-Identifier: BSD-2-Clause */ -// FIXME: LibIPC Decoder and Encoder are sensitive to include order here -// clang-format off -#include <LibGUI/ConnectionToWindowServer.h> -// clang-format on #include <AK/LexicalPath.h> #include <LibCore/File.h> #include <LibFileSystemAccessClient/Client.h> +#include <LibGUI/ConnectionToWindowServer.h> #include <LibGUI/MessageBox.h> #include <LibGUI/Window.h> |