summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibIPC/ClientConnection.h
diff options
context:
space:
mode:
authorDaniel Bertalan <dani@danielbertalan.dev>2021-06-20 21:10:54 +0200
committerAli Mohammad Pur <Ali.mpfard@gmail.com>2021-06-24 17:35:49 +0430
commitf28f00c654c44a2762cb4a702a9ad9377cdadf3b (patch)
treebddb59250972f912449c4c025be554092a71458a /Userland/Libraries/LibIPC/ClientConnection.h
parentf820917a765d1ac74af5f66567becb955996b0d8 (diff)
downloadserenity-f28f00c654c44a2762cb4a702a9ad9377cdadf3b.zip
Userland: Disambiguate dependent types
Clang produced an error on these pieces of code without the `typename` keyword.
Diffstat (limited to 'Userland/Libraries/LibIPC/ClientConnection.h')
-rw-r--r--Userland/Libraries/LibIPC/ClientConnection.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibIPC/ClientConnection.h b/Userland/Libraries/LibIPC/ClientConnection.h
index bb72a6f633..de0bf0798b 100644
--- a/Userland/Libraries/LibIPC/ClientConnection.h
+++ b/Userland/Libraries/LibIPC/ClientConnection.h
@@ -22,7 +22,7 @@ class ClientConnection : public Connection<ServerEndpoint, ClientEndpoint>
, public ClientEndpoint::template Proxy<ServerEndpoint> {
public:
using ServerStub = typename ServerEndpoint::Stub;
- using IPCProxy = ClientEndpoint::template Proxy<ServerEndpoint>;
+ using IPCProxy = typename ClientEndpoint::template Proxy<ServerEndpoint>;
ClientConnection(ServerStub& stub, NonnullRefPtr<Core::LocalSocket> socket, int client_id)
: IPC::Connection<ServerEndpoint, ClientEndpoint>(stub, move(socket))