diff options
author | Robin Burchell <robin+git@viroteck.net> | 2019-07-17 10:31:52 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-07-17 20:16:44 +0200 |
commit | 6eaa6826fa54bab45ad86fefc9eab721cb174efb (patch) | |
tree | 53e93b7ac9a417d1ed3c3659faa1c86f683d31df /Libraries | |
parent | edcbba9e989ad353e2e6bf36aa62f9a08cec77fd (diff) | |
download | serenity-6eaa6826fa54bab45ad86fefc9eab721cb174efb.zip |
Port WSClientConnection to CIPCServerSideClient
Diffstat (limited to 'Libraries')
-rw-r--r-- | Libraries/LibCore/CIPCServerSideClient.h | 2 |
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. |