diff options
author | Daniel Bertalan <dani@danielbertalan.dev> | 2021-06-20 21:10:54 +0200 |
---|---|---|
committer | Ali Mohammad Pur <Ali.mpfard@gmail.com> | 2021-06-24 17:35:49 +0430 |
commit | f28f00c654c44a2762cb4a702a9ad9377cdadf3b (patch) | |
tree | bddb59250972f912449c4c025be554092a71458a /Userland/Libraries/LibIPC/ClientConnection.h | |
parent | f820917a765d1ac74af5f66567becb955996b0d8 (diff) | |
download | serenity-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.h | 2 |
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)) |