Debugger: Pass Abi as const reference

Change-Id: I9f7ef9becc1509cea9ee8f9284a09fc10fdb150f
Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
Orgad Shaneh
2014-05-19 23:32:59 +03:00
committed by hjk
parent 8e6e8c6219
commit 6aa1f3ccc0

View File

@@ -1463,7 +1463,7 @@ void GdbEngine::handleStopResponse(const GdbMi &data)
handleStop1(data);
}
static QByteArray stopSignal(Abi abi)
static QByteArray stopSignal(const Abi &abi)
{
return (abi.os() == Abi::WindowsOS) ? QByteArray("SIGTRAP") : QByteArray("SIGINT");
}