forked from qt-creator/qt-creator
qmljs: Remove foreach usage
Task-number: QTCREATORBUG-27464 Change-Id: Ifdb8cf514dfe328e0a64bde1beff3e63a4b7fbc3 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: hjk <hjk@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
This commit is contained in:
@@ -1023,7 +1023,7 @@ void CodeFormatter::dump() const
|
||||
{
|
||||
qCDebug(formatterLog) << "Current token index" << m_tokenIndex;
|
||||
qCDebug(formatterLog) << "Current state:";
|
||||
foreach (const State &s, m_currentState) {
|
||||
for (const State &s : m_currentState) {
|
||||
qCDebug(formatterLog) << stateToString(s.type) << s.savedIndentDepth;
|
||||
}
|
||||
qCDebug(formatterLog) << "Current indent depth:" << m_indentDepth;
|
||||
|
||||
Reference in New Issue
Block a user