mirror of
https://github.com/YosysHQ/yosys
synced 2026-05-25 11:26:22 +00:00
patch: unique heap
This commit is contained in:
parent
dbc7e33908
commit
b7ea32dbee
3 changed files with 15 additions and 12 deletions
|
|
@ -19,8 +19,9 @@ protected:
|
|||
public:
|
||||
Module *mod;
|
||||
SigMap map;
|
||||
vector<Wire> wires_;
|
||||
vector<Cell> cells_;
|
||||
vector<std::unique_ptr<Wire>> wires_;
|
||||
vector<std::unique_ptr<Cell>> cells_;
|
||||
Cell* root;
|
||||
|
||||
vector<RTLIL::SigSig> connections_;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue