| Index: Source/core/inspector/InspectorInspectorAgent.cpp
|
| diff --git a/Source/core/inspector/InspectorInspectorAgent.cpp b/Source/core/inspector/InspectorInspectorAgent.cpp
|
| index 8334dcec623c1acf8cd7fd91bcdb260429e89755..3192ee953d5eb01a134f1a6182c4c21147ed490c 100644
|
| --- a/Source/core/inspector/InspectorInspectorAgent.cpp
|
| +++ b/Source/core/inspector/InspectorInspectorAgent.cpp
|
| @@ -119,7 +119,7 @@ void InspectorInspectorAgent::enable(ErrorString*)
|
| if (m_pendingInspectData.first)
|
| inspect(m_pendingInspectData.first, m_pendingInspectData.second);
|
|
|
| - for (Vector<pair<long, String> >::iterator it = m_pendingEvaluateTestCommands.begin(); m_frontend && it != m_pendingEvaluateTestCommands.end(); ++it)
|
| + for (Vector<pair<long, String>>::iterator it = m_pendingEvaluateTestCommands.begin(); m_frontend && it != m_pendingEvaluateTestCommands.end(); ++it)
|
| m_frontend->evaluateForTestInFrontend(static_cast<int>((*it).first), (*it).second);
|
| m_pendingEvaluateTestCommands.clear();
|
| }
|
|
|