mirror of
https://github.com/verilator/verilator.git
synced 2026-09-03 08:24:31 +02:00
Use C++11 for loops, from clang-migrate. No functional change intended
This commit is contained in:
+1
-4
@@ -200,10 +200,7 @@ private:
|
||||
|
||||
// Collapse duplicate tables
|
||||
chgVscp = findDuplicateTable(chgVscp);
|
||||
for (std::deque<AstVarScope*>::iterator it = m_tableVarps.begin();
|
||||
it != m_tableVarps.end(); ++it) {
|
||||
*it = findDuplicateTable(*it);
|
||||
}
|
||||
for (auto& vscp : m_tableVarps) vscp = findDuplicateTable(vscp);
|
||||
|
||||
createOutputAssigns(nodep, stmtsp, indexVscp, chgVscp);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user