aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2017-10-20 19:31:41 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2017-10-20 20:11:46 +0900
commit514fa7512ea23691f7ae7e23257e752a0b758b50 (patch)
treeae6689b8de67bbc9b19fee103cdf5f429756e506
parentddd4c9fd8dc6dc52956b1557cf3e59d3d5295b8f (diff)
downloadlibquotient-514fa7512ea23691f7ae7e23257e752a0b758b50.tar.gz
libquotient-514fa7512ea23691f7ae7e23257e752a0b758b50.zip
Cleanup
-rw-r--r--events/roommessageevent.h2
-rw-r--r--util.h4
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());