Replace `std::map` with `dict` for `TechmapWires` type.

This commit is contained in:
Alberto Gonzalez 2020-04-19 22:34:17 +00:00
parent 644e55b3d3
commit c43017fc08
No known key found for this signature in database
GPG Key ID: 8395A8BA109708B2
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ struct TechmapWorker
RTLIL::SigSpec value;
};
typedef std::map<IdString, std::vector<TechmapWireData>> TechmapWires;
typedef dict<IdString, std::vector<TechmapWireData>> TechmapWires;
bool extern_mode;
bool assert_mode;