mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-03 01:40:23 +00:00
Import more std:: stuff into Yosys namespace
This commit is contained in:
parent
da923c198e
commit
207736b4ee
39 changed files with 168 additions and 161 deletions
|
@ -568,7 +568,7 @@ struct EvalPass : public Pass {
|
|||
if (tab_column_width.size() < row.size())
|
||||
tab_column_width.resize(row.size());
|
||||
for (size_t i = 0; i < row.size(); i++)
|
||||
tab_column_width[i] = std::max(tab_column_width[i], int(row[i].size()));
|
||||
tab_column_width[i] = max(tab_column_width[i], int(row[i].size()));
|
||||
}
|
||||
|
||||
log("\n");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue