3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-05-25 11:26:22 +00:00

patch: unique heap

This commit is contained in:
Emil J. Tywoniak 2026-05-14 17:43:46 +02:00
parent dbc7e33908
commit b7ea32dbee
3 changed files with 15 additions and 12 deletions

View file

@ -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_;