X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Fmodules.h;h=3ad0258b8455a56bce58dd63189c602353335823;hb=c5d9b2d6c14414b8933c2e7f60995ca7b01a2d05;hp=5deed943a786062e65af81cfa4d2ff87459e93a5;hpb=c6a508a3da977041909f18f77d6e8fea942512cf;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/modules.h b/include/modules.h index 5deed943a..3ad0258b8 100644 --- a/include/modules.h +++ b/include/modules.h @@ -276,7 +276,7 @@ class CoreExport Module : public classbase, public usecountbase /** Clean up prior to destruction * If you override, you must call this AFTER your module's cleanup */ - virtual CullResult cull(); + virtual CullResult cull() CXX11_OVERRIDE; /** Default destructor. * destroys a module class @@ -989,7 +989,7 @@ class CoreExport Module : public classbase, public usecountbase * @param user The user that this line of the query is about * @param memb The member shown in this line, NULL if no channel is in this line * @param numeric Numeric to send; modifiable. - * @param Return MOD_RES_PASSTHRU to allow the line to be displayed, MOD_RES_DENY to hide it + * @return MOD_RES_PASSTHRU to allow the line to be displayed, MOD_RES_DENY to hide it */ virtual ModResult OnSendWhoLine(User* source, const std::vector& params, User* user, Membership* memb, Numeric::Numeric& numeric); @@ -1028,7 +1028,7 @@ class CoreExport ModuleManager : public fakederef PRIO_STATE_LAST } prioritizationState; - /** Loads all core modules (cmd_*) + /** Loads all core modules (core_*) */ void LoadCoreModules(std::map& servicemap);