summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@qt.io>2021-06-17 09:12:29 +0200
committerLars Knoll <lars.knoll@qt.io>2021-06-17 23:13:39 +0200
commitb012fe7c4a489a463f7926862110567bf16908ad (patch)
tree4e6ceeb62cb2c082537429f74ae708f045776c48
parent745bd14f36eb5dfa5d8f7c603c2b41494c84bd00 (diff)
Fix compiler warning about unused variable
Change-Id: I7379a4addd1cb1f1f13befb44a513423ddd05f95 Reviewed-by: André de la Rocha <andre.rocha@qt.io> Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
-rw-r--r--tests/auto/unit/mockbackend/qmockmediaencoder.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/unit/mockbackend/qmockmediaencoder.h b/tests/auto/unit/mockbackend/qmockmediaencoder.h
index 683296465..7c1cb07a6 100644
--- a/tests/auto/unit/mockbackend/qmockmediaencoder.h
+++ b/tests/auto/unit/mockbackend/qmockmediaencoder.h
@@ -46,7 +46,7 @@ public:
{
}
- bool isLocationWritable(const QUrl &location) const
+ bool isLocationWritable(const QUrl &) const
{
return true;
}