From 423a10bc31a20bbdd03e85754971878f5a57f89b Mon Sep 17 00:00:00 2001 From: Keith Rothman <537074+litghost@users.noreply.github.com> Date: Tue, 23 Feb 2021 13:49:01 -0800 Subject: Change CellInfo in getBelPinsForCellPin to be const. Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com> --- generic/arch.cc | 2 +- generic/arch.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'generic') diff --git a/generic/arch.cc b/generic/arch.cc index 03d8c801..1f9531c7 100644 --- a/generic/arch.cc +++ b/generic/arch.cc @@ -347,7 +347,7 @@ std::vector Arch::getBelPins(BelId bel) const return ret; } -const std::vector &Arch::getBelPinsForCellPin(CellInfo *cell_info, IdString pin) const +const std::vector &Arch::getBelPinsForCellPin(const CellInfo *cell_info, IdString pin) const { return cell_info->bel_pins.at(pin); } diff --git a/generic/arch.h b/generic/arch.h index 8a5b27e0..cc8de484 100644 --- a/generic/arch.h +++ b/generic/arch.h @@ -247,7 +247,7 @@ struct Arch : ArchAPI WireId getBelPinWire(BelId bel, IdString pin) const override; PortType getBelPinType(BelId bel, IdString pin) const override; std::vector getBelPins(BelId bel) const override; - const std::vector &getBelPinsForCellPin(CellInfo *cell_info, IdString pin) const override; + const std::vector &getBelPinsForCellPin(const CellInfo *cell_info, IdString pin) const override; WireId getWireByName(IdStringList name) const override; IdStringList getWireName(WireId wire) const override; -- cgit v1.2.3