diff options
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; |