summaryrefslogtreecommitdiff
path: root/src/imports/locationlabs/locationlabs.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 /src/imports/locationlabs/locationlabs.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 'src/imports/locationlabs/locationlabs.cpp')
-rw-r--r--src/imports/locationlabs/locationlabs.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/imports/locationlabs/locationlabs.cpp b/src/imports/locationlabs/locationlabs.cpp
index 708869d0..50fe760f 100644
--- a/src/imports/locationlabs/locationlabs.cpp
+++ b/src/imports/locationlabs/locationlabs.cpp
@@ -52,8 +52,8 @@ QT_BEGIN_NAMESPACE
static QObject *singleton_type_factory(QQmlEngine *engine, QJSEngine *jsEngine)
{
- Q_UNUSED(engine)
- Q_UNUSED(jsEngine)
+ Q_UNUSED(engine);
+ Q_UNUSED(jsEngine);
return new LocationLabsSingleton;
}