3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-06-13 01:16:16 +00:00

document functionalir.h and change visitors to derive from AbstractVisitor. remove extraneous widths arguments from visitors.

This commit is contained in:
Emily Schmidt 2024-07-17 11:53:42 +01:00
parent 6922633b0b
commit 55c2c17853
5 changed files with 400 additions and 170 deletions

View file

@ -109,7 +109,7 @@ public:
{
auto found = graph_->sparse_attrs.find(index_);
log_assert(found != graph_->sparse_attrs.end());
return *found;
return found->second;
}
};