diff options
author | YRabbit <rabbit@yrabbit.cyou> | 2022-12-02 08:28:51 +1000 |
---|---|---|
committer | YRabbit <rabbit@yrabbit.cyou> | 2022-12-02 08:28:51 +1000 |
commit | 7638146782946a31d1db0fe71b11e6ead4d5b363 (patch) | |
tree | 2b28da2aa26ff1eca3cb680c66c48fa174744a1c /ecp5 | |
parent | ec53ae0c3ba7778f41274f05f4561a335a4b0b90 (diff) | |
parent | 719f89806a688d8dee67bb3b17d1ac30662dc717 (diff) | |
download | nextpnr-7638146782946a31d1db0fe71b11e6ead4d5b363.tar.gz nextpnr-7638146782946a31d1db0fe71b11e6ead4d5b363.tar.bz2 nextpnr-7638146782946a31d1db0fe71b11e6ead4d5b363.zip |
Merge branch 'master' into chipdb-cfg
Diffstat (limited to 'ecp5')
-rw-r--r-- | ecp5/arch_pybindings.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ecp5/arch_pybindings.cc b/ecp5/arch_pybindings.cc index 1621eda5..a4a58d4c 100644 --- a/ecp5/arch_pybindings.cc +++ b/ecp5/arch_pybindings.cc @@ -54,8 +54,8 @@ void arch_wrap_python(py::module &m) readonly_wrapper<BelPin, decltype(&BelPin::bel), &BelPin::bel, conv_to_str<BelId>>::def_wrap(belpin_cls, "bel"); readonly_wrapper<BelPin, decltype(&BelPin::pin), &BelPin::pin, conv_to_str<IdString>>::def_wrap(belpin_cls, "pin"); - typedef const PipRange UphillPipRange; - typedef const PipRange DownhillPipRange; + typedef PipRange UphillPipRange; + typedef PipRange DownhillPipRange; typedef const std::vector<BelBucketId> &BelBucketRange; typedef const std::vector<BelId> &BelRangeForBelBucket; |