diff options
author | David Shah <dave@ds0.me> | 2021-02-02 09:59:18 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-02 09:59:18 +0000 |
commit | efc98c517eb1d2eb4a8ecc2ae82e770aaa1a0edd (patch) | |
tree | 91e54daa7324b19dd1546e86160d57bdb3425e0d /common/arch_pybindings_shared.h | |
parent | 7d0b134b483120869152b09800fdf4d9087da39e (diff) | |
parent | 5cf2f8d1ea60537f0c2061451b83e8eb2ba3eefa (diff) | |
download | nextpnr-efc98c517eb1d2eb4a8ecc2ae82e770aaa1a0edd.tar.gz nextpnr-efc98c517eb1d2eb4a8ecc2ae82e770aaa1a0edd.tar.bz2 nextpnr-efc98c517eb1d2eb4a8ecc2ae82e770aaa1a0edd.zip |
Merge pull request #563 from litghost/seperate_pip_range_types
Seperate PipRange types in pybindings_shared.
Diffstat (limited to 'common/arch_pybindings_shared.h')
-rw-r--r-- | common/arch_pybindings_shared.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/arch_pybindings_shared.h b/common/arch_pybindings_shared.h index 8bb93a80..88f95020 100644 --- a/common/arch_pybindings_shared.h +++ b/common/arch_pybindings_shared.h @@ -91,9 +91,9 @@ fn_wrapper_1a<Context, decltype(&Context::getBoundPipNet), &Context::getBoundPip fn_wrapper_1a<Context, decltype(&Context::getConflictingPipNet), &Context::getConflictingPipNet, deref_and_wrap<NetInfo>, conv_from_str<PipId>>::def_wrap(ctx_cls, "getConflictingPipNet"); -fn_wrapper_1a<Context, decltype(&Context::getPipsDownhill), &Context::getPipsDownhill, wrap_context<PipRange>, +fn_wrapper_1a<Context, decltype(&Context::getPipsDownhill), &Context::getPipsDownhill, wrap_context<DownhillPipRange>, conv_from_str<WireId>>::def_wrap(ctx_cls, "getPipsDownhill"); -fn_wrapper_1a<Context, decltype(&Context::getPipsUphill), &Context::getPipsUphill, wrap_context<PipRange>, +fn_wrapper_1a<Context, decltype(&Context::getPipsUphill), &Context::getPipsUphill, wrap_context<UphillPipRange>, conv_from_str<WireId>>::def_wrap(ctx_cls, "getPipsUphill"); fn_wrapper_1a<Context, decltype(&Context::getPipSrcWire), &Context::getPipSrcWire, conv_to_str<WireId>, |