diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-08-01 18:09:47 +0200 |
---|---|---|
committer | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-09-04 18:42:11 +0200 |
commit | bde38f86337d6f49b34b38016ab088d2f48ec371 (patch) | |
tree | 66971b5864de14bbe17e2b7fa8cbf12adb325bf5 /quotest | |
parent | 575534e7cca310c6d6195ab16d482bf9dfba755e (diff) | |
download | libquotient-bde38f86337d6f49b34b38016ab088d2f48ec371.tar.gz libquotient-bde38f86337d6f49b34b38016ab088d2f48ec371.zip |
concept EventClass
Constrain types to derive from Event (or the chosen class), where
applicable.
Diffstat (limited to 'quotest')
-rw-r--r-- | quotest/quotest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/quotest/quotest.cpp b/quotest/quotest.cpp index 3ac6404a..624888be 100644 --- a/quotest/quotest.cpp +++ b/quotest/quotest.cpp @@ -128,7 +128,7 @@ private: [[nodiscard]] bool checkRedactionOutcome(const QByteArray& thisTest, const QString& evtIdToRedact); - template <class EventT> + template <EventClass<RoomEvent> EventT> [[nodiscard]] bool validatePendingEvent(const QString& txnId); [[nodiscard]] bool checkDirectChat() const; void finishTest(const TestToken& token, bool condition, const char* file, @@ -156,7 +156,7 @@ void TestSuite::doTest(const QByteArray& testName) Q_ARG(TestToken, testName)); } -template <class EventT> +template <EventClass<RoomEvent> EventT> bool TestSuite::validatePendingEvent(const QString& txnId) { auto it = targetRoom->findPendingEvent(txnId); |