mirror of
https://github.com/verilator/verilator.git
synced 2026-08-31 10:04:40 +02:00
C++11: Favor auto, range for. No functional change intended.
This commit is contained in:
+1
-2
@@ -108,8 +108,7 @@ private:
|
||||
|
||||
// METHODS
|
||||
void calc_tasks() {
|
||||
for (CFuncVec::iterator it = m_cfuncsp.begin(); it != m_cfuncsp.end(); ++it) {
|
||||
AstCFunc* nodep = *it;
|
||||
for (AstCFunc* nodep : m_cfuncsp) {
|
||||
if (!nodep->dontInline()) nodep->isInline(true);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user