aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/ios
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@qt.io>2019-09-02 10:32:51 +0200
committerTobias Hunger <tobias.hunger@qt.io>2019-09-02 09:35:36 +0000
commit8bfe0da2f75489fb0a47d286e09a95ac53fe7ea5 (patch)
tree639c7f525a00bc73bfa0822b7c264f7ccc3680a4 /src/plugins/ios
parent265498cadcf2c5f5bce264296b86940a78ae7f83 (diff)
Ios: Silence warnings about unnecessary ';'
Change-Id: Ie77d1f49da7eaf970a508f316034741b5d7b94b7 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Diffstat (limited to 'src/plugins/ios')
-rw-r--r--src/plugins/ios/iosrunner.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/plugins/ios/iosrunner.cpp b/src/plugins/ios/iosrunner.cpp
index 0496209d43..872e7b1856 100644
--- a/src/plugins/ios/iosrunner.cpp
+++ b/src/plugins/ios/iosrunner.cpp
@@ -220,7 +220,8 @@ void IosRunner::handleGotServerPorts(IosToolHandler *handler, const QString &bun
Port qmlPort)
{
// Called when debugging on Device.
- Q_UNUSED(bundlePath); Q_UNUSED(deviceId)
+ Q_UNUSED(bundlePath)
+ Q_UNUSED(deviceId)
if (m_toolHandler != handler)
return;
@@ -249,7 +250,8 @@ void IosRunner::handleGotInferiorPid(IosToolHandler *handler, const QString &bun
const QString &deviceId, qint64 pid)
{
// Called when debugging on Simulator.
- Q_UNUSED(bundlePath); Q_UNUSED(deviceId)
+ Q_UNUSED(bundlePath)
+ Q_UNUSED(deviceId)
if (m_toolHandler != handler)
return;