mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 00:37:45 +00:00
Userland: Mark subclasses of IPC::{Client,Server}Connection final
This commit is contained in:
parent
c1c252ddb2
commit
a345a1f4a1
10 changed files with 14 additions and 11 deletions
|
@ -34,7 +34,8 @@ auto Launcher::Details::from_details_str(const String& details_str) -> NonnullRe
|
|||
return details;
|
||||
}
|
||||
|
||||
class LaunchServerConnection : public IPC::ServerConnection<LaunchClientEndpoint, LaunchServerEndpoint>
|
||||
class LaunchServerConnection final
|
||||
: public IPC::ServerConnection<LaunchClientEndpoint, LaunchServerEndpoint>
|
||||
, public LaunchClientEndpoint {
|
||||
C_OBJECT(LaunchServerConnection)
|
||||
private:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue