aboutsummaryrefslogtreecommitdiffstats
path: root/fpga_interchange
diff options
context:
space:
mode:
authormyrtle <gatecat@ds0.me>2022-12-04 12:27:53 +0100
committerGitHub <noreply@github.com>2022-12-04 12:27:53 +0100
commitdb25c5c88998aa73725f2a4625d74f38615aaa82 (patch)
tree54b19ced7d12dcc3f61f6c21b1500721370b8ee4 /fpga_interchange
parentf07d9a18356ec8df74d9c42693f7b9307e390a7f (diff)
parent91454515f4a0d87f42af7cd61cdf925c8fdb9229 (diff)
downloadnextpnr-db25c5c88998aa73725f2a4625d74f38615aaa82.tar.gz
nextpnr-db25c5c88998aa73725f2a4625d74f38615aaa82.tar.bz2
nextpnr-db25c5c88998aa73725f2a4625d74f38615aaa82.zip
Merge pull request #1054 from YosysHQ/gatecat/api-add-const
api: Make NetInfo* of checkPipAvailForNet const
Diffstat (limited to 'fpga_interchange')
-rw-r--r--fpga_interchange/arch.cc2
-rw-r--r--fpga_interchange/arch.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/fpga_interchange/arch.cc b/fpga_interchange/arch.cc
index 3ce9f79e..4fc5d48d 100644
--- a/fpga_interchange/arch.cc
+++ b/fpga_interchange/arch.cc
@@ -1743,7 +1743,7 @@ void Arch::bindWire(WireId wire, NetInfo *net, PlaceStrength strength)
refreshUiWire(wire);
}
-bool Arch::checkPipAvailForNet(PipId pip, NetInfo *net) const
+bool Arch::checkPipAvailForNet(PipId pip, const NetInfo *net) const
{
NPNR_ASSERT(pip != PipId());
auto pip_iter = pip_to_net.find(pip);
diff --git a/fpga_interchange/arch.h b/fpga_interchange/arch.h
index aeb5578f..04f583d4 100644
--- a/fpga_interchange/arch.h
+++ b/fpga_interchange/arch.h
@@ -596,7 +596,7 @@ struct Arch : ArchAPI<ArchRanges>
void unbindPip(PipId pip) final;
bool checkPipAvail(PipId pip) const final;
- bool checkPipAvailForNet(PipId pip, NetInfo *net) const final;
+ bool checkPipAvailForNet(PipId pip, const NetInfo *net) const final;
NetInfo *getBoundPipNet(PipId pip) const final
{