1
0
mirror of https://github.com/anope/anope.git synced 2026-06-27 05:26:38 +02:00

Made the flags class take an optional size arg

This commit is contained in:
Adam
2010-06-26 22:50:02 -04:00
parent e51d6e2fe1
commit d49aee6cf8
14 changed files with 27 additions and 27 deletions
+1 -1
View File
@@ -97,7 +97,7 @@ void Channel::JoinUser(User *user)
{
Alog(LOG_DEBUG) << user->nick << " joins " << this->name;
Flags<ChannelModeName> *Status = new Flags<ChannelModeName>;
Flags<ChannelModeName, CMODE_END> *Status = new Flags<ChannelModeName, CMODE_END>;
ChannelContainer *cc = new ChannelContainer(this);
cc->Status = Status;
user->chans.push_back(cc);