diff options
Diffstat (limited to 'Userland/Libraries/LibIPC/ServerConnection.h')
-rw-r--r-- | Userland/Libraries/LibIPC/ServerConnection.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibIPC/ServerConnection.h b/Userland/Libraries/LibIPC/ServerConnection.h index fcdf247173..3d6b78dba8 100644 --- a/Userland/Libraries/LibIPC/ServerConnection.h +++ b/Userland/Libraries/LibIPC/ServerConnection.h @@ -18,7 +18,7 @@ public: using ClientStub = typename ClientEndpoint::Stub; using IPCProxy = typename ServerEndpoint::template Proxy<ClientEndpoint>; - ServerConnection(ClientStub& local_endpoint, const StringView& address) + ServerConnection(ClientStub& local_endpoint, StringView address) : Connection<ClientEndpoint, ServerEndpoint>(local_endpoint, Core::LocalSocket::construct()) , ServerEndpoint::template Proxy<ClientEndpoint>(*this, {}) { |