forked from qt-creator/qt-creator
Fix warning about not referenced variable
Fix MSVC2010 warning: warning: C4189: 'handler' : local variable is initialized but not referenced Change-Id: I4a389c6e596e8c8d4aaccabcf2cc272a626926f4 Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
@@ -835,8 +835,7 @@ void LldbEngine::readLldbStandardOutput()
|
||||
|
||||
void LldbEngine::requestUpdateWatchers()
|
||||
{
|
||||
WatchHandler *handler = watchHandler();
|
||||
QHashIterator<QByteArray, int> it(handler->watcherNames());
|
||||
QHashIterator<QByteArray, int> it(WatchHandler::watcherNames());
|
||||
QList<QByteArray> watcherData;
|
||||
while (it.hasNext()) {
|
||||
it.next();
|
||||
|
||||
Reference in New Issue
Block a user