diff options
author | Andreas Kling <kling@serenityos.org> | 2020-02-15 00:12:31 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-02-15 00:12:31 +0100 |
commit | 6a3cd11a8035747c05e781064a8a0084736908c8 (patch) | |
tree | fd22c611fb7bbf96621bb2c8cdbea597a85def98 /Servers/ProtocolServer | |
parent | a368cf7d515470e5d6122246bbaf0a0e9cd1aee5 (diff) | |
download | serenity-6a3cd11a8035747c05e781064a8a0084736908c8.zip |
AK: Remove manual forward declarations with <AK/Forward.h>
Diffstat (limited to 'Servers/ProtocolServer')
-rw-r--r-- | Servers/ProtocolServer/PSClientConnection.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Servers/ProtocolServer/PSClientConnection.h b/Servers/ProtocolServer/PSClientConnection.h index 7184bad286..0760ebe1e5 100644 --- a/Servers/ProtocolServer/PSClientConnection.h +++ b/Servers/ProtocolServer/PSClientConnection.h @@ -30,10 +30,6 @@ #include <LibIPC/ClientConnection.h> #include <ProtocolServer/ProtocolServerEndpoint.h> -namespace AK { -class SharedBuffer; -} - class Download; class PSClientConnection final : public IPC::ClientConnection<ProtocolServerEndpoint> |