mirror of https://github.com/YosysHQ/yosys.git
Fix typo
This commit is contained in:
parent
8f5710c464
commit
11cb5fab00
|
@ -1528,7 +1528,7 @@ std::vector<RTLIL::Wire*> RTLIL::Module::selected_wires() const
|
||||||
std::vector<RTLIL::Cell*> RTLIL::Module::selected_cells() const
|
std::vector<RTLIL::Cell*> RTLIL::Module::selected_cells() const
|
||||||
{
|
{
|
||||||
std::vector<RTLIL::Cell*> result;
|
std::vector<RTLIL::Cell*> result;
|
||||||
result.reserve(wires_.size());
|
result.reserve(cells_.size());
|
||||||
for (auto &it : cells_)
|
for (auto &it : cells_)
|
||||||
if (design->selected(this, it.second))
|
if (design->selected(this, it.second))
|
||||||
result.push_back(it.second);
|
result.push_back(it.second);
|
||||||
|
|
Loading…
Reference in New Issue