Userland: Make IPC handlers return void if they don't have any outputs

This commit is contained in:
Gunnar Beutner
2021-05-02 05:20:28 +02:00
committed by Andreas Kling
parent 7cf2839a26
commit 889359b6f9
30 changed files with 180 additions and 225 deletions

View File

@@ -58,9 +58,8 @@ const Web::Page& ClientConnection::page() const
return m_page_host->page();
}
Messages::WebContentServer::GreetResponse ClientConnection::handle(const Messages::WebContentServer::Greet&)
void ClientConnection::handle(const Messages::WebContentServer::Greet&)
{
return {};
}
void ClientConnection::handle(const Messages::WebContentServer::UpdateSystemTheme& message)