diff options
author | gatecat <gatecat@ds0.me> | 2021-02-10 11:27:11 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-10 11:27:11 +0000 |
commit | e376f950fe683b9a744437301a9e09eae1895efa (patch) | |
tree | ccb065cf753546eaf3f55bbe8427d4c77a81ab63 /common/pybindings.cc | |
parent | f67d474edc3f95e830ec23156a90327ae446ce6f (diff) | |
parent | 6bd3dba1e39780e52097533f7e89f823d7e72956 (diff) | |
download | nextpnr-e376f950fe683b9a744437301a9e09eae1895efa.tar.gz nextpnr-e376f950fe683b9a744437301a9e09eae1895efa.tar.bz2 nextpnr-e376f950fe683b9a744437301a9e09eae1895efa.zip |
Merge pull request #574 from YosysHQ/gatecat/belpin-1
Remove the unused CellInfo::pins field
Diffstat (limited to 'common/pybindings.cc')
-rw-r--r-- | common/pybindings.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/common/pybindings.cc b/common/pybindings.cc index aacc8d9c..a72da78e 100644 --- a/common/pybindings.cc +++ b/common/pybindings.cc @@ -167,8 +167,6 @@ PYBIND11_EMBEDDED_MODULE(MODULE_NAME, m) conv_from_str<BelId>>::def_wrap(ci_cls, "bel"); readwrite_wrapper<CellInfo &, decltype(&CellInfo::belStrength), &CellInfo::belStrength, pass_through<PlaceStrength>, pass_through<PlaceStrength>>::def_wrap(ci_cls, "belStrength"); - readonly_wrapper<CellInfo &, decltype(&CellInfo::pins), &CellInfo::pins, wrap_context<IdIdMap &>>::def_wrap(ci_cls, - "pins"); fn_wrapper_1a_v<CellInfo &, decltype(&CellInfo::addInput), &CellInfo::addInput, conv_from_str<IdString>>::def_wrap( ci_cls, "addInput"); |