diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-10-20 19:31:41 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-10-20 20:11:46 +0900 |
commit | 514fa7512ea23691f7ae7e23257e752a0b758b50 (patch) | |
tree | ae6689b8de67bbc9b19fee103cdf5f429756e506 | |
parent | ddd4c9fd8dc6dc52956b1557cf3e59d3d5295b8f (diff) | |
download | libquotient-514fa7512ea23691f7ae7e23257e752a0b758b50.tar.gz libquotient-514fa7512ea23691f7ae7e23257e752a0b758b50.zip |
Cleanup
-rw-r--r-- | events/roommessageevent.h | 2 | ||||
-rw-r--r-- | util.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/events/roommessageevent.h b/events/roommessageevent.h index 74e0defb..ad413943 100644 --- a/events/roommessageevent.h +++ b/events/roommessageevent.h @@ -76,7 +76,7 @@ namespace QMatrixClient protected: using Base::Base; - virtual void fillInfoJson(QJsonObject* infoJson) const { } + virtual void fillInfoJson(QJsonObject* /*infoJson*/) const { } }; } // namespace MessageEventContent @@ -39,8 +39,8 @@ namespace QMatrixClient { public: Owning() = default; - Owning(Owning&) = delete; - Owning(Owning&& other) = default; + Owning(const Owning&) = delete; + Owning(Owning&&) = default; Owning& operator=(Owning&& other) { assign(other.release()); |