summaryrefslogtreecommitdiff
path: root/include/modules/cs_entrymsg.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/modules/cs_entrymsg.h')
-rw-r--r--include/modules/cs_entrymsg.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/modules/cs_entrymsg.h b/include/modules/cs_entrymsg.h
index 23a40b4c2..5b899ec84 100644
--- a/include/modules/cs_entrymsg.h
+++ b/include/modules/cs_entrymsg.h
@@ -13,9 +13,9 @@ struct EntryMsg
Anope::string message;
time_t when;
- virtual ~EntryMsg() { }
+ virtual ~EntryMsg() = default;
protected:
- EntryMsg() { }
+ EntryMsg() = default;
};
struct EntryMessageList : Serialize::Checker<std::vector<EntryMsg *> >