diff options
author | YRabbit <rabbit@yrabbit.cyou> | 2022-12-04 21:33:36 +1000 |
---|---|---|
committer | YRabbit <rabbit@yrabbit.cyou> | 2022-12-04 21:33:36 +1000 |
commit | e6a8d0f4fce4ce0c50ec5705ef75ad6982213d4e (patch) | |
tree | 4065a6dbc408bd4b76563ab6c86a1e84fc388394 /generic/viaduct_api.h | |
parent | 2e68962a025999ec85276f6362540c13ccfcd752 (diff) | |
parent | db25c5c88998aa73725f2a4625d74f38615aaa82 (diff) | |
download | nextpnr-e6a8d0f4fce4ce0c50ec5705ef75ad6982213d4e.tar.gz nextpnr-e6a8d0f4fce4ce0c50ec5705ef75ad6982213d4e.tar.bz2 nextpnr-e6a8d0f4fce4ce0c50ec5705ef75ad6982213d4e.zip |
Merge branch 'master' into pll-pins
Diffstat (limited to 'generic/viaduct_api.h')
-rw-r--r-- | generic/viaduct_api.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/viaduct_api.h b/generic/viaduct_api.h index bc9b4311..6f8adb3e 100644 --- a/generic/viaduct_api.h +++ b/generic/viaduct_api.h @@ -77,7 +77,7 @@ struct ViaductAPI // it's bound (which the base arch will deal with) virtual bool checkWireAvail(WireId wire) const { return true; } virtual bool checkPipAvail(PipId pip) const { return true; } - virtual bool checkPipAvailForNet(PipId pip, NetInfo *net) const { return checkPipAvail(pip); }; + virtual bool checkPipAvailForNet(PipId pip, const NetInfo *net) const { return checkPipAvail(pip); }; // --- Route lookahead --- virtual delay_t estimateDelay(WireId src, WireId dst) const; |