aboutsummaryrefslogtreecommitdiffstats
path: root/generic/arch.h
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2018-07-24 16:28:06 +0200
committerClifford Wolf <clifford@clifford.at>2018-07-24 16:28:06 +0200
commita82a8840d2c3995a1b746020a54315acd7fba7b8 (patch)
tree944f2c8a41ccb857539914493e1baefab380b3cb /generic/arch.h
parent974ca143e80ac48b0e87054001a48b0d6597c6fa (diff)
downloadnextpnr-a82a8840d2c3995a1b746020a54315acd7fba7b8.tar.gz
nextpnr-a82a8840d2c3995a1b746020a54315acd7fba7b8.tar.bz2
nextpnr-a82a8840d2c3995a1b746020a54315acd7fba7b8.zip
Add missing implementations of generic Arch methods
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'generic/arch.h')
-rw-r--r--generic/arch.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/arch.h b/generic/arch.h
index 3025bda0..97ed1ac2 100644
--- a/generic/arch.h
+++ b/generic/arch.h
@@ -141,7 +141,7 @@ struct Arch : BaseCtx
IdString getBelName(BelId bel) const;
Loc getBelLocation(BelId bel) const;
BelId getBelByLocation(Loc loc) const;
- std::vector<BelId> getBelsByTile(int x, int y) const;
+ const std::vector<BelId> &getBelsByTile(int x, int y) const;
bool getBelGlobalBuf(BelId bel) const;
uint32_t getBelChecksum(BelId bel) const;
void bindBel(BelId bel, IdString cell, PlaceStrength strength);