summaryrefslogtreecommitdiff
path: root/Libraries
diff options
context:
space:
mode:
authorRobin Burchell <robin+git@viroteck.net>2019-07-17 10:31:52 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-07-17 20:16:44 +0200
commit6eaa6826fa54bab45ad86fefc9eab721cb174efb (patch)
tree53e93b7ac9a417d1ed3c3659faa1c86f683d31df /Libraries
parentedcbba9e989ad353e2e6bf36aa62f9a08cec77fd (diff)
downloadserenity-6eaa6826fa54bab45ad86fefc9eab721cb174efb.zip
Port WSClientConnection to CIPCServerSideClient
Diffstat (limited to 'Libraries')
-rw-r--r--Libraries/LibCore/CIPCServerSideClient.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibCore/CIPCServerSideClient.h b/Libraries/LibCore/CIPCServerSideClient.h
index 9e09dedd87..4d28b447ef 100644
--- a/Libraries/LibCore/CIPCServerSideClient.h
+++ b/Libraries/LibCore/CIPCServerSideClient.h
@@ -174,7 +174,7 @@ protected:
CObject::event(event);
}
- virtual bool handle_message(const ClientMessage&, const ByteBuffer& = {}) = 0;
+ virtual bool handle_message(const ClientMessage&, const ByteBuffer&& = {}) = 0;
private:
// TODO: A way to create some kind of CIODevice with an open FD would be nice.