summaryrefslogtreecommitdiff
path: root/tests/auto/positionplugin/plugin.cpp
diff options
context:
space:
mode:
authorLars Schmertmann <Lars.Schmertmann@governikus.de>2020-06-27 12:54:03 +0200
committerLars Schmertmann <Lars.Schmertmann@governikus.de>2020-06-29 14:37:28 +0200
commit1da76e21a0a39295c4ff41f8f268dc0eb854a482 (patch)
tree47c695748448fd44a4ea654ebc938bf95fd41a06 /tests/auto/positionplugin/plugin.cpp
parent76c0963f280484adaf859958b7d7017ddc4dc5da (diff)
downloadqtlocation-1da76e21a0a39295c4ff41f8f268dc0eb854a482.tar.gz
Add ; to Q_UNUSED
This is required to remove the ; from the macro with Qt 6. Task-number: QTBUG-82978 Change-Id: I1aaf36e893b8f947abd0770acd9d3007cffdcb10 Reviewed-by: Alex Blasche <alexander.blasche@qt.io>
Diffstat (limited to 'tests/auto/positionplugin/plugin.cpp')
-rw-r--r--tests/auto/positionplugin/plugin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/positionplugin/plugin.cpp b/tests/auto/positionplugin/plugin.cpp
index f28797b5..82bc4411 100644
--- a/tests/auto/positionplugin/plugin.cpp
+++ b/tests/auto/positionplugin/plugin.cpp
@@ -251,14 +251,14 @@ QGeoPositionInfoSource *QGeoPositionInfoSourceFactoryTest::positionInfoSourceWit
QGeoSatelliteInfoSource *QGeoPositionInfoSourceFactoryTest::satelliteInfoSourceWithParameters(QObject *parent, const QVariantMap &parameters)
{
Q_UNUSED(parent);
- Q_UNUSED(parameters)
+ Q_UNUSED(parameters);
return nullptr;
}
QGeoAreaMonitorSource *QGeoPositionInfoSourceFactoryTest::areaMonitorWithParameters(QObject *parent, const QVariantMap &parameters)
{
Q_UNUSED(parent);
- Q_UNUSED(parameters)
+ Q_UNUSED(parameters);
return nullptr;
}