debugger: suppress warning triggered by temporary breakpoints

This commit is contained in:
hjk
2011-03-23 12:24:35 +01:00
parent f774556de7
commit ffe710e515

View File

@@ -1058,7 +1058,9 @@ const BreakpointResponse &BreakHandler::response(BreakpointId id) const
{
static BreakpointResponse dummy;
ConstIterator it = m_storage.find(id);
QTC_ASSERT(it != m_storage.end(), qDebug() << id; return dummy);
//QTC_ASSERT(it != m_storage.end(), qDebug() << id; return dummy);
if (it == m_storage.end())
return dummy;
return it->response;
}