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 /modules/chanserv/cs_set_misc.cpp | |
parent | e341cac8d6565044f7390852afb40c5e388121df (diff) |
Fix some coding style issues.
Diffstat (limited to 'modules/chanserv/cs_set_misc.cpp')
-rw-r--r-- | modules/chanserv/cs_set_misc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/chanserv/cs_set_misc.cpp b/modules/chanserv/cs_set_misc.cpp index 9a2c8d70e..685ab8022 100644 --- a/modules/chanserv/cs_set_misc.cpp +++ b/modules/chanserv/cs_set_misc.cpp @@ -21,7 +21,7 @@ static Anope::map<ExtensibleItem<CSMiscData> *> items; static ExtensibleItem<CSMiscData> *GetItem(const Anope::string &name) { - ExtensibleItem<CSMiscData>* &it = items[name]; + ExtensibleItem<CSMiscData> *&it = items[name]; if (!it) try { @@ -51,7 +51,7 @@ struct CSMiscData final sdata["data"] << this->data; } - static Serializable* Unserialize(Serializable *obj, Serialize::Data &data) + static Serializable *Unserialize(Serializable *obj, Serialize::Data &data) { Anope::string sci, sname, sdata; |