mirror of
https://github.com/anope/anope.git
synced 2026-07-07 11:23:13 +02:00
Use C++11 default initializers and destructors where possible.
This commit is contained in:
@@ -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 *> >
|
||||
|
||||
Reference in New Issue
Block a user