aboutsummaryrefslogtreecommitdiffstats
path: root/common/placer_heap.cc
diff options
context:
space:
mode:
authorDavid Shah <dave@ds0.me>2020-12-30 20:37:07 +0000
committerGitHub <noreply@github.com>2020-12-30 20:37:07 +0000
commitc6cdf30501dcb2da01361229dd66a05dad73a132 (patch)
treeb91338acfa13c2b53fe48105eb6ffa7639533469 /common/placer_heap.cc
parent818faa78aaac168742a1f2140de5f4c18c846348 (diff)
parent60276e34479e61307968c371c4af247bedf30c8f (diff)
downloadnextpnr-c6cdf30501dcb2da01361229dd66a05dad73a132.tar.gz
nextpnr-c6cdf30501dcb2da01361229dd66a05dad73a132.tar.bz2
nextpnr-c6cdf30501dcb2da01361229dd66a05dad73a132.zip
Merge pull request #548 from per-gron/c++17
C++17 compatibility: Don't use std::random_shuffle
Diffstat (limited to 'common/placer_heap.cc')
-rw-r--r--common/placer_heap.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/placer_heap.cc b/common/placer_heap.cc
index 790c2230..908be49e 100644
--- a/common/placer_heap.cc
+++ b/common/placer_heap.cc
@@ -530,7 +530,7 @@ class HeAPPlacer
available_bels[ctx->getBelType(bel)].push_back(bel);
}
for (auto &t : available_bels) {
- std::random_shuffle(t.second.begin(), t.second.end(), [&](size_t n) { return ctx->rng(int(n)); });
+ ctx->shuffle(t.second.begin(), t.second.end());
}
for (auto cell : sorted(ctx->cells)) {
CellInfo *ci = cell.second;