diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-12-14 19:05:06 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-12-14 19:05:06 +0900 |
commit | 95797cf0ea78779ac98348fa1110abc09f5a344f (patch) | |
tree | 5f9b462bccbc6173d008b4d1b6b44f9d56afda47 /events | |
parent | c5f480355c7d4c000a4ee73fd7f8107a9a9340c2 (diff) | |
download | libquotient-95797cf0ea78779ac98348fa1110abc09f5a344f.tar.gz libquotient-95797cf0ea78779ac98348fa1110abc09f5a344f.zip |
That virtual ~Event() mentioned in the previous commit message
Diffstat (limited to 'events')
-rw-r--r-- | events/event.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/events/event.h b/events/event.h index 2b18bb46..6a7f6ece 100644 --- a/events/event.h +++ b/events/event.h @@ -62,6 +62,7 @@ namespace QMatrixClient explicit Event(Type type) : _type(type) { } Event(Type type, const QJsonObject& rep); Event(const Event&) = delete; + virtual ~Event(); Type type() const { return _type; } bool isStateEvent() const |