diff options
author | gatecat <gatecat@ds0.me> | 2021-04-14 12:19:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-14 12:19:10 +0100 |
commit | b26088f940d512174154cef3954f3a9b6c9642e7 (patch) | |
tree | 26ecc8b150afaa9381910ebe3d22622e967f91e3 /fpga_interchange/pseudo_pip_model.h | |
parent | 2912860c9788033a7501726e77bb4962b394280d (diff) | |
parent | b0f57d234f877fe8b2a421e3e868c8a3e9cd89eb (diff) | |
download | nextpnr-b26088f940d512174154cef3954f3a9b6c9642e7.tar.gz nextpnr-b26088f940d512174154cef3954f3a9b6c9642e7.tar.bz2 nextpnr-b26088f940d512174154cef3954f3a9b6c9642e7.zip |
Merge pull request #679 from YosysHQ/gatecat/disable-absl
Hash table changes
Diffstat (limited to 'fpga_interchange/pseudo_pip_model.h')
-rw-r--r-- | fpga_interchange/pseudo_pip_model.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpga_interchange/pseudo_pip_model.h b/fpga_interchange/pseudo_pip_model.h index 53e2b3a3..1e79071d 100644 --- a/fpga_interchange/pseudo_pip_model.h +++ b/fpga_interchange/pseudo_pip_model.h @@ -98,7 +98,7 @@ struct PseudoPipData const std::vector<PseudoPipBel> &get_logic_bels_for_pip(const Context *ctx, int32_t site, PipId pip) const; HashTables::HashMap<int32_t, size_t> max_pseudo_pip_for_tile_type; - HashTables::HashMap<std::pair<int32_t, int32_t>, std::vector<size_t>> possibles_sites_for_pip; + HashTables::HashMap<std::pair<int32_t, int32_t>, std::vector<size_t>, PairHash> possibles_sites_for_pip; HashTables::HashMap<LogicBelKey, std::vector<PseudoPipBel>> logic_bels_for_pip; }; |