Fix type of i
Signed-off-by: Ryszard Rozak <rrozak@antmicro.com>
This commit is contained in:
parent
4232553f06
commit
93904eb786
|
|
@ -102,7 +102,7 @@ public:
|
|||
|
||||
AstVarRef* const enRefp = new AstVarRef{flp, m_enVscp, VAccess::WRITE};
|
||||
AstNodeStmt* const enInitStmtsp = rdUpdateStmtsp->cloneTree(true);
|
||||
for (int i = 0; i < assigns.size(); i++) {
|
||||
for (size_t i = 0; i < assigns.size(); i++) {
|
||||
// Save copies, because clonep() works only after the last cloneTree
|
||||
assigns[i] = assigns[i]->clonep();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue