mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-03-16 02:15:17 +00:00
Userland: Make IPC handlers return void if they don't have any outputs
This commit is contained in:
committed by
Andreas Kling
parent
7cf2839a26
commit
889359b6f9
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user