fix(commands/cmd): now using NULL instead nullptr

This commit is contained in:
Raphael 2025-05-26 17:55:31 +02:00
parent bcfa001d5e
commit 29a3bb114b
7 changed files with 67 additions and 41 deletions

View file

@ -112,8 +112,8 @@ ACommand::ACommand(::User *user, ::Channel *channel, ::Server *server, const std
_command = _args.at(0);
_channels = server->getChannelsList();
_users = server->getUsersList();
_uTarget = nullptr;
_cTarget = nullptr;
_uTarget = NULL;
_cTarget = NULL;
}
ACommand::~ACommand() {