From 514fa7512ea23691f7ae7e23257e752a0b758b50 Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Fri, 20 Oct 2017 19:31:41 +0900 Subject: Cleanup --- events/roommessageevent.h | 2 +- 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 diff --git a/util.h b/util.h index 0c8f3640..09c58087 100644 --- a/util.h +++ b/util.h @@ -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()); -- cgit v1.2.3