mirror of
https://github.com/anope/anope.git
synced 2026-06-28 11:06:37 +02:00
Fix ns_set_misc and cs_set_misc
This commit is contained in:
@@ -190,9 +190,8 @@ class CSSetMisc : public Module
|
||||
}
|
||||
}
|
||||
|
||||
void OnChanInfo(CommandSource &source, ChannelInfo *ci, InfoFormatter &info, bool ShowHidden) anope_override
|
||||
void OnChanInfo(CommandSource &source, ChannelInfo *ci, InfoFormatter &info, bool) anope_override
|
||||
{
|
||||
Anope::map<ExtensibleItem<CSMiscData> *> items;
|
||||
for (Anope::map<ExtensibleItem<CSMiscData> *>::iterator it = items.begin(); it != items.end(); ++it)
|
||||
{
|
||||
ExtensibleItem<CSMiscData> *e = it->second;
|
||||
|
||||
@@ -208,9 +208,8 @@ class NSSetMisc : public Module
|
||||
}
|
||||
}
|
||||
|
||||
void OnNickInfo(CommandSource &source, NickAlias *na, InfoFormatter &info, bool ShowHidden) anope_override
|
||||
void OnNickInfo(CommandSource &source, NickAlias *na, InfoFormatter &info, bool) anope_override
|
||||
{
|
||||
Anope::map<ExtensibleItem<NSMiscData> *> items;
|
||||
for (Anope::map<ExtensibleItem<NSMiscData> *>::iterator it = items.begin(); it != items.end(); ++it)
|
||||
{
|
||||
ExtensibleItem<NSMiscData> *e = it->second;
|
||||
|
||||
Reference in New Issue
Block a user