diff options
author | Keith Rothman <537074+litghost@users.noreply.github.com> | 2021-02-23 13:49:01 -0800 |
---|---|---|
committer | Keith Rothman <537074+litghost@users.noreply.github.com> | 2021-02-23 14:08:54 -0800 |
commit | 423a10bc31a20bbdd03e85754971878f5a57f89b (patch) | |
tree | 71b527933c729a2c0486b29d7d272d0cbfe2c0d8 /common | |
parent | 85af066d4f5a189ccdc6c7d6bafabb319a946901 (diff) | |
download | nextpnr-423a10bc31a20bbdd03e85754971878f5a57f89b.tar.gz nextpnr-423a10bc31a20bbdd03e85754971878f5a57f89b.tar.bz2 nextpnr-423a10bc31a20bbdd03e85754971878f5a57f89b.zip |
Change CellInfo in getBelPinsForCellPin to be const.
Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/nextpnr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/nextpnr.h b/common/nextpnr.h index ed227fb6..59198d6d 100644 --- a/common/nextpnr.h +++ b/common/nextpnr.h @@ -1146,7 +1146,7 @@ template <typename R> struct ArchAPI : BaseCtx virtual WireId getBelPinWire(BelId bel, IdString pin) const = 0; virtual PortType getBelPinType(BelId bel, IdString pin) const = 0; virtual typename R::BelPinsRangeT getBelPins(BelId bel) const = 0; - virtual typename R::CellBelPinRangeT getBelPinsForCellPin(CellInfo *cell_info, IdString pin) const = 0; + virtual typename R::CellBelPinRangeT getBelPinsForCellPin(const CellInfo *cell_info, IdString pin) const = 0; // Wire methods virtual typename R::AllWiresRangeT getWires() const = 0; virtual WireId getWireByName(IdStringList name) const = 0; @@ -1298,7 +1298,7 @@ template <typename R> struct BaseArch : ArchAPI<R> return empty_if_possible<typename R::BelAttrsRangeT>(); } - virtual typename R::CellBelPinRangeT getBelPinsForCellPin(CellInfo *cell_info, IdString pin) const override + virtual typename R::CellBelPinRangeT getBelPinsForCellPin(const CellInfo *cell_info, IdString pin) const override { return return_if_match<std::array<IdString, 1>, typename R::CellBelPinRangeT>({pin}); } |