diff options
author | Roman Plášil <me@rplasil.name> | 2017-09-04 19:23:50 +0800 |
---|---|---|
committer | Roman Plášil <me@rplasil.name> | 2017-09-04 19:23:50 +0800 |
commit | 071856d31995f665ee9219b3e05510ab83f9f4d8 (patch) | |
tree | b414f9803f3bd68738fd69ccf1b288fe4abc5e2d /jobs | |
parent | 56d34ecab5eb35c426a6e64b034bf2507761dd09 (diff) | |
download | libquotient-071856d31995f665ee9219b3e05510ab83f9f4d8.tar.gz libquotient-071856d31995f665ee9219b3e05510ab83f9f4d8.zip |
Use move on SyncData
Diffstat (limited to 'jobs')
-rw-r--r-- | jobs/syncjob.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jobs/syncjob.h b/jobs/syncjob.h index 80cc6735..2ded0df3 100644 --- a/jobs/syncjob.h +++ b/jobs/syncjob.h @@ -87,7 +87,7 @@ namespace QMatrixClient const QString& filter = {}, int timeout = -1, const QString& presence = {}); - SyncData &data() { return d; } + SyncData &&takeData() { return std::move(d); } protected: Status parseJson(const QJsonDocument& data) override; |