Fix a compiler warning caused by an unused variable.

This commit is contained in:
Sadie Powell 2021-03-30 18:31:54 +01:00
parent 49702c621e
commit d13cd19efe

View File

@ -31,12 +31,9 @@
*/ */
class FwdFJoinBuilder : public CommandFJoin::Builder class FwdFJoinBuilder : public CommandFJoin::Builder
{ {
TreeServer* const sourceserver;
public: public:
FwdFJoinBuilder(Channel* chan, TreeServer* server) FwdFJoinBuilder(Channel* chan, TreeServer* server)
: CommandFJoin::Builder(chan, server) : CommandFJoin::Builder(chan, server)
, sourceserver(server)
{ {
} }