mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 21:07:36 +00:00
Userland: Disambiguate dependent types
Clang produced an error on these pieces of code without the `typename` keyword.
This commit is contained in:
parent
f820917a76
commit
f28f00c654
3 changed files with 4 additions and 4 deletions
|
@ -16,7 +16,7 @@ class ServerConnection : public IPC::Connection<ClientEndpoint, ServerEndpoint>
|
|||
, public ServerEndpoint::template Proxy<ClientEndpoint> {
|
||||
public:
|
||||
using ClientStub = typename ClientEndpoint::Stub;
|
||||
using IPCProxy = ServerEndpoint::template Proxy<ClientEndpoint>;
|
||||
using IPCProxy = typename ServerEndpoint::template Proxy<ClientEndpoint>;
|
||||
|
||||
ServerConnection(ClientStub& local_endpoint, const StringView& address)
|
||||
: Connection<ClientEndpoint, ServerEndpoint>(local_endpoint, Core::LocalSocket::construct())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue