aboutsummaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
authorDavid Shah <davey1576@gmail.com>2018-07-25 19:45:38 +0200
committerDavid Shah <davey1576@gmail.com>2018-07-25 19:45:38 +0200
commit7a8e8999d21205044e707a2765dc444531d69cef (patch)
tree7085808be6ffebcd52da35af98577c736e523b5b /generic
parent75744ff14cef6a8b1f44521bcb63b7b4a88037be (diff)
downloadnextpnr-7a8e8999d21205044e707a2765dc444531d69cef.tar.gz
nextpnr-7a8e8999d21205044e707a2765dc444531d69cef.tar.bz2
nextpnr-7a8e8999d21205044e707a2765dc444531d69cef.zip
clangformat
Signed-off-by: David Shah <davey1576@gmail.com>
Diffstat (limited to 'generic')
-rw-r--r--generic/arch.cc10
1 files changed, 2 insertions, 8 deletions
diff --git a/generic/arch.cc b/generic/arch.cc
index ac79ebea..d7401356 100644
--- a/generic/arch.cc
+++ b/generic/arch.cc
@@ -207,15 +207,9 @@ BelId Arch::getBelByLocation(Loc loc) const
return BelId();
}
-const std::vector<BelId> &Arch::getBelsByTile(int x, int y) const
-{
- return bels_by_tile.at(x).at(y);
-}
+const std::vector<BelId> &Arch::getBelsByTile(int x, int y) const { return bels_by_tile.at(x).at(y); }
-bool Arch::getBelGlobalBuf(BelId bel) const
-{
- return bels.at(bel).gb;
-}
+bool Arch::getBelGlobalBuf(BelId bel) const { return bels.at(bel).gb; }
uint32_t Arch::getBelChecksum(BelId bel) const
{