diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-02-26 09:50:53 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-26 09:50:53 +0900 |
commit | bae6360ce04e98579096ff7a15f60cf7c3c2c4db (patch) | |
tree | c87b49fcba6eeab7ebd149157dfa01c093a86742 /lib/events | |
parent | 395ed0ca307a4cef696048b30718f8d5c99492a0 (diff) | |
parent | 1a9fd422581cf14c384d2467950ab3f2e1039565 (diff) | |
download | libquotient-bae6360ce04e98579096ff7a15f60cf7c3c2c4db.tar.gz libquotient-bae6360ce04e98579096ff7a15f60cf7c3c2c4db.zip |
Merge pull request #287 from a-andreyev/aa13q-fix-5.6-build-qhash
Fix Qt<5.7 build for std::hash<StateEventKey>
Diffstat (limited to 'lib/events')
-rw-r--r-- | lib/events/stateevent.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/events/stateevent.h b/lib/events/stateevent.h index dc017b11..3f54f7bf 100644 --- a/lib/events/stateevent.h +++ b/lib/events/stateevent.h @@ -46,7 +46,7 @@ namespace QMatrixClient { * of state in Matrix. * \sa https://matrix.org/docs/spec/client_server/unstable.html#types-of-room-events */ - using StateEventKey = std::pair<QString, QString>; + using StateEventKey = QPair<QString, QString>; template <typename ContentT> struct Prev |