diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-05-04 12:13:43 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-05-04 13:11:56 +0900 |
commit | 28a0d70164e2596d306521cd18d25c0e8c0b5336 (patch) | |
tree | 96d5f6c936e2906800388b7b45ec3d57ffad04a4 /lib/events/simplestateevents.h | |
parent | 844eddfffb8e1ee5d213371299dee0d15614bef8 (diff) | |
download | libquotient-28a0d70164e2596d306521cd18d25c0e8c0b5336.tar.gz libquotient-28a0d70164e2596d306521cd18d25c0e8c0b5336.zip |
EvT::TypeId: Use a member function instead of a variable
The latter one causes linkage errors when used from a template method (but not from a template class, puzzlingly).
Diffstat (limited to 'lib/events/simplestateevents.h')
-rw-r--r-- | lib/events/simplestateevents.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/events/simplestateevents.h b/lib/events/simplestateevents.h index 6b0cd51a..d9f403e8 100644 --- a/lib/events/simplestateevents.h +++ b/lib/events/simplestateevents.h @@ -28,7 +28,7 @@ namespace QMatrixClient : public StateEvent<EventContent::SimpleContent<_ContentType>> \ { \ public: \ - static constexpr const char* TypeId = _TypeId; \ + static constexpr const char* typeId() { return _TypeId; } \ explicit _Name(const QJsonObject& obj) \ : StateEvent(_EnumType, obj, QStringLiteral(#_ContentKey)) \ { } \ |