1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:17:44 +00:00

Userland: Mark subclasses of IPC::{Client,Server}Connection final

This commit is contained in:
Andreas Kling 2021-05-23 09:52:41 +02:00
parent c1c252ddb2
commit a345a1f4a1
10 changed files with 14 additions and 11 deletions

View file

@ -18,8 +18,7 @@
namespace LanguageServers {
class ClientConnection
: public IPC::ClientConnection<LanguageClientEndpoint, LanguageServerEndpoint> {
class ClientConnection : public IPC::ClientConnection<LanguageClientEndpoint, LanguageServerEndpoint> {
public:
explicit ClientConnection(NonnullRefPtr<Core::LocalSocket>, int client_id);
~ClientConnection() override;