mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-02 15:46:33 +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
Notes:
sideshowbarker
2024-07-18 11:34:48 +09:00
Author: https://github.com/BertalanD
Commit: f28f00c654
Pull-request: https://github.com/SerenityOS/serenity/pull/8150
Reviewed-by: https://github.com/Hendiadyoin1
Reviewed-by: https://github.com/alimpfard ✅
3 changed files with 4 additions and 4 deletions
|
@ -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))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue