diff options
| -rw-r--r-- | machxo2/arch_pybindings.cc | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/machxo2/arch_pybindings.cc b/machxo2/arch_pybindings.cc index 2ed68697..3fcf721d 100644 --- a/machxo2/arch_pybindings.cc +++ b/machxo2/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;  | 
