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/xline.h | |
parent | e341cac8d6565044f7390852afb40c5e388121df (diff) |
Fix some coding style issues.
Diffstat (limited to 'include/xline.h')
-rw-r--r-- | include/xline.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/xline.h b/include/xline.h index 1c269e7ac..7ba9e1a9a 100644 --- a/include/xline.h +++ b/include/xline.h @@ -45,7 +45,7 @@ public: bool IsRegex() const; void Serialize(Serialize::Data &data) const override; - static Serializable* Unserialize(Serializable *obj, Serialize::Data &data); + static Serializable *Unserialize(Serializable *obj, Serialize::Data &data); }; /* Managers XLines. There is one XLineManager per type of XLine. */ @@ -125,7 +125,7 @@ public: * @param index The index * @return The XLine, or NULL if the index is out of bounds */ - XLine* GetEntry(unsigned index); + XLine *GetEntry(unsigned index); /** Clear the XLine vector * Note: This does not remove the XLines from the IRCd @@ -145,7 +145,7 @@ public: * @param mask The mask * @return The XLine the user matches, or NULL */ - XLine* HasEntry(const Anope::string &mask); + XLine *HasEntry(const Anope::string &mask); /** Check a user against all of the xlines in this XLineManager * @param u The user |