diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-07-02 13:39:33 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-07-04 20:12:34 +0900 |
commit | ed467d27b07781fdd2f7ddef043568954ce50b69 (patch) | |
tree | a0782b0d87de8cbd851c6a008764dd6ae07836db /lib/events/redactionevent.h | |
parent | bd853f392aaf5b05e0a8023da85a38e91d90a6e0 (diff) | |
download | libquotient-ed467d27b07781fdd2f7ddef043568954ce50b69.tar.gz libquotient-ed467d27b07781fdd2f7ddef043568954ce50b69.zip |
Events: use a template structure instead of template variables; rearrange code into blocks
A template member variable in it seemed to cause internal compiler error in MSVC 2017, let alone MSVC 2015...
Diffstat (limited to 'lib/events/redactionevent.h')
-rw-r--r-- | lib/events/redactionevent.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/events/redactionevent.h b/lib/events/redactionevent.h index 8c6cbeff..64504d57 100644 --- a/lib/events/redactionevent.h +++ b/lib/events/redactionevent.h @@ -36,5 +36,6 @@ namespace QMatrixClient QString reason() const { return contentJson()["reason"_ls].toString(); } }; + REGISTER_EVENT_TYPE(RedactionEvent) DEFINE_EVENTTYPE_ALIAS(Redaction, RedactionEvent) } // namespace QMatrixClient |