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_entrymsg.cpp | |
parent | e341cac8d6565044f7390852afb40c5e388121df (diff) |
Fix some coding style issues.
Diffstat (limited to 'modules/chanserv/cs_entrymsg.cpp')
-rw-r--r-- | modules/chanserv/cs_entrymsg.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/chanserv/cs_entrymsg.cpp b/modules/chanserv/cs_entrymsg.cpp index c28c58bc9..df1f04581 100644 --- a/modules/chanserv/cs_entrymsg.cpp +++ b/modules/chanserv/cs_entrymsg.cpp @@ -38,7 +38,7 @@ struct EntryMsgImpl final data.SetType("when", Serialize::Data::DT_INT); data["when"] << this->when; } - static Serializable* Unserialize(Serializable *obj, Serialize::Data &data); + static Serializable *Unserialize(Serializable *obj, Serialize::Data &data); }; struct EntryMessageListImpl final @@ -46,7 +46,7 @@ struct EntryMessageListImpl final { EntryMessageListImpl(Extensible *) { } - EntryMsg* Create() override + EntryMsg *Create() override { return new EntryMsgImpl(); } @@ -68,7 +68,7 @@ EntryMsgImpl::~EntryMsgImpl() } -Serializable* EntryMsgImpl::Unserialize(Serializable *obj, Serialize::Data &data) +Serializable *EntryMsgImpl::Unserialize(Serializable *obj, Serialize::Data &data) { Anope::string sci, screator, smessage; time_t swhen; |