mirror of https://github.com/YosysHQ/yosys.git
Replace `std::map` with `dict` for `TechmapWires` type.
This commit is contained in:
parent
644e55b3d3
commit
c43017fc08
|
@ -79,7 +79,7 @@ struct TechmapWorker
|
||||||
RTLIL::SigSpec value;
|
RTLIL::SigSpec value;
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef std::map<IdString, std::vector<TechmapWireData>> TechmapWires;
|
typedef dict<IdString, std::vector<TechmapWireData>> TechmapWires;
|
||||||
|
|
||||||
bool extern_mode;
|
bool extern_mode;
|
||||||
bool assert_mode;
|
bool assert_mode;
|
||||||
|
|
Loading…
Reference in New Issue