mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 05:38:11 +00:00
Userland: Make IPC handlers return void if they don't have any outputs
This commit is contained in:
parent
7cf2839a26
commit
889359b6f9
30 changed files with 180 additions and 225 deletions
|
@ -30,9 +30,8 @@ void ClientConnection::die()
|
|||
exit(0);
|
||||
}
|
||||
|
||||
Messages::ImageDecoderServer::GreetResponse ClientConnection::handle(const Messages::ImageDecoderServer::Greet&)
|
||||
void ClientConnection::handle(const Messages::ImageDecoderServer::Greet&)
|
||||
{
|
||||
return {};
|
||||
}
|
||||
|
||||
Messages::ImageDecoderServer::DecodeImageResponse ClientConnection::handle(const Messages::ImageDecoderServer::DecodeImage& message)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue