diff options
author | Thomas Hartmann <[email protected]> | 2017-01-12 18:17:25 +0100 |
---|---|---|
committer | Thomas Hartmann <[email protected]> | 2017-01-13 13:43:35 +0000 |
commit | 824fc105c5c01f3c536bab02ad3d60211e09c757 (patch) | |
tree | 3f0295e237db6b150de6f4cf65be802cce71f89d /src/plugins/ios/iostoolhandler.cpp | |
parent | ab711a28ed34f594d41341042664312e323af4d7 (diff) |
Fixing warning
Change-Id: I92236680f34b6620c2371a1d9f1d1dcde8ba9282
Reviewed-by: Eike Ziller <[email protected]>
Diffstat (limited to 'src/plugins/ios/iostoolhandler.cpp')
-rw-r--r-- | src/plugins/ios/iostoolhandler.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/ios/iostoolhandler.cpp b/src/plugins/ios/iostoolhandler.cpp index 64c362de47f..0f6a4e850cd 100644 --- a/src/plugins/ios/iostoolhandler.cpp +++ b/src/plugins/ios/iostoolhandler.cpp @@ -937,6 +937,8 @@ void IosSimulatorToolHandlerPrivate::launchAppOnSimulator(const QStringList &ext // Poll every 1 sec to check whether the app is running. QThread::msleep(1000); } while (!fi.isCanceled() && kill(pid, 0) == 0); +#else + Q_UNUSED(pid); #endif // Future is cancelled if the app is stopped from the qt creator. if (!fi.isCanceled()) |