diff options
author | Sadie Powell <sadie@witchery.services> | 2024-04-15 21:00:10 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-04-15 21:00:10 +0100 |
commit | f3ebb674696c9caf78eead88e6513e077c95d4db (patch) | |
tree | c26701f30cad744835c739086f6a0437e031d007 /include | |
parent | 0d149ce1953f7894e69dfa86ca4cc32a70af53ec (diff) |
Make SendChannel abstract.
Diffstat (limited to 'include')
-rw-r--r-- | include/protocol.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/protocol.h b/include/protocol.h index c74720bc4..e57cd304f 100644 --- a/include/protocol.h +++ b/include/protocol.h @@ -299,7 +299,7 @@ public: /** Send a channel creation message to the uplink. * On most TS6 IRCds this is a SJOIN with no nick */ - virtual void SendChannel(Channel *c) { } + virtual void SendChannel(Channel *c) = 0; /** Make the user an IRC operator * Normally this is a simple +o, though some IRCds require us to send the oper type |