3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 17:44:09 +00:00

fix dumpAst() compilation warning

This commit is contained in:
Zachary Snow 2022-01-18 00:17:08 -07:00
parent 55924de708
commit 342927732e

View file

@ -344,7 +344,7 @@ void AstNode::dumpAst(FILE *f, std::string indent) const
}
if (!multirange_swapped.empty()) {
fprintf(f, " multirange_swapped=[");
for (auto v : multirange_swapped)
for (bool v : multirange_swapped)
fprintf(f, " %d", v);
fprintf(f, " ]");
}