diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2020-03-29 11:48:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-29 11:48:04 +0200 |
commit | c2493836c3b0f706e03ce71769761890d1314d7e (patch) | |
tree | a7c58aa2fbc660e4aa97f0e37f736827fec714e5 /tests | |
parent | cb09112c5b88f391019c05368ff6e8998722ba3c (diff) | |
parent | 6f8f373efd5ae6909a481d17e6b20bca885ccd48 (diff) | |
download | libquotient-c2493836c3b0f706e03ce71769761890d1314d7e.tar.gz libquotient-c2493836c3b0f706e03ce71769761890d1314d7e.zip |
Merge pull request #396 from quotient-im/kitsune-fix-e2ee-building
Kitsune fix e2ee building
Diffstat (limited to 'tests')
-rw-r--r-- | tests/quotest.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/quotest.cpp b/tests/quotest.cpp index 194c6a69..4f7c4026 100644 --- a/tests/quotest.cpp +++ b/tests/quotest.cpp @@ -46,7 +46,8 @@ private: }; using TestToken = QByteArray; // return value of QMetaMethod::name -Q_DECLARE_METATYPE(TestToken); +Q_DECLARE_METATYPE(TestToken) + // For now, the token itself is the test name but that may change. const char* testName(const TestToken& token) { return token.constData(); } |