diff options
author | gatecat <gatecat@ds0.me> | 2021-06-01 16:51:18 +0100 |
---|---|---|
committer | gatecat <gatecat@ds0.me> | 2021-06-02 14:27:56 +0100 |
commit | 579b98c5963c2b86d191d481a2147a663a8196dd (patch) | |
tree | a37baaeac305fbb9d3f7db98ccda8a1708ac234c /ecp5/bitstream.cc | |
parent | ff72454f8391ab4785fa8314f3efbbea96c30422 (diff) | |
download | nextpnr-579b98c5963c2b86d191d481a2147a663a8196dd.tar.gz nextpnr-579b98c5963c2b86d191d481a2147a663a8196dd.tar.bz2 nextpnr-579b98c5963c2b86d191d481a2147a663a8196dd.zip |
Use hashlib for core netlist structures
Signed-off-by: gatecat <gatecat@ds0.me>
Diffstat (limited to 'ecp5/bitstream.cc')
-rw-r--r-- | ecp5/bitstream.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ecp5/bitstream.cc b/ecp5/bitstream.cc index f8d11d39..c8349f88 100644 --- a/ecp5/bitstream.cc +++ b/ecp5/bitstream.cc @@ -569,8 +569,7 @@ static std::vector<bool> parse_config_str(const Property &p, int length) return word; } -std::string intstr_or_default(const std::unordered_map<IdString, Property> &ct, const IdString &key, - std::string def = "0") +std::string intstr_or_default(const dict<IdString, Property> &ct, const IdString &key, std::string def = "0") { auto found = ct.find(key); if (found == ct.end()) |