Fix compile warning

COMMAND_TIMEOUT is not needed and will not be emitted

Change-Id: Id89aaa8c0b774a962e7a4e813a5b3d3e6a37524d
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
Vikas Pachdha
2017-01-09 12:43:00 +01:00
parent 6c83981ee6
commit 1e73c52dd5

View File

@@ -53,11 +53,10 @@ Q_LOGGING_CATEGORY(simulatorLog, "qtc.ios.simulator")
namespace Ios { namespace Ios {
namespace Internal { namespace Internal {
static int COMMAND_TIMEOUT = 10000;
static int SIMULATOR_START_TIMEOUT = 60000; static int SIMULATOR_START_TIMEOUT = 60000;
static QString SIM_UDID_TAG = QStringLiteral("SimUdid"); static QString SIM_UDID_TAG = QStringLiteral("SimUdid");
static bool checkForTimeout(const chrono::high_resolution_clock::time_point &start, int msecs = COMMAND_TIMEOUT) static bool checkForTimeout(const chrono::high_resolution_clock::time_point &start, int msecs = 10000)
{ {
bool timedOut = false; bool timedOut = false;
auto end = chrono::high_resolution_clock::now(); auto end = chrono::high_resolution_clock::now();