diff options
author | Sadie Powell <sadie@witchery.services> | 2024-02-26 15:27:01 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-02-26 15:34:17 +0000 |
commit | c6cb4ba159a8916243d7ac5a5c4e8d13942baf99 (patch) | |
tree | 5183b6cb982dadb2b91987ff7b69486ea8d811df /include/users.h | |
parent | e341cac8d6565044f7390852afb40c5e388121df (diff) |
Fix some coding style issues.
Diffstat (limited to 'include/users.h')
-rw-r--r-- | include/users.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/users.h b/include/users.h index d8860e6f2..2cd71c240 100644 --- a/include/users.h +++ b/include/users.h @@ -116,7 +116,7 @@ protected: virtual ~User(); public: - static User* OnIntroduce(const Anope::string &snick, const Anope::string &sident, const Anope::string &shost, const Anope::string &svhost, const Anope::string &sip, Server *sserver, const Anope::string &srealname, time_t ts, const Anope::string &smodes, const Anope::string &suid, NickCore *nc); + static User *OnIntroduce(const Anope::string &snick, const Anope::string &sident, const Anope::string &shost, const Anope::string &svhost, const Anope::string &sip, Server *sserver, const Anope::string &srealname, time_t ts, const Anope::string &smodes, const Anope::string &suid, NickCore *nc); /** Update the nickname of a user record accordingly, should be * called from ircd protocol. @@ -193,7 +193,7 @@ public: */ void SendMessage(BotInfo *source, const char *fmt, ...) ATTR_FORMAT(3, 4); void SendMessage(BotInfo *source, const Anope::string &msg) override; - void SendMessage(CommandSource& source, const Anope::string &msg) override; + void SendMessage(CommandSource &source, const Anope::string &msg) override; /** Identify the user to a nick. * updates last_seen, logs the user in, @@ -377,7 +377,7 @@ public: * @param nick_only set to true to only look up by nick, not UID * @return the user, if they exist */ - static User* Find(const Anope::string &name, bool nick_only = false); + static User *Find(const Anope::string &name, bool nick_only = false); /** Quits all users who are pending to be quit */ |