diff options
author | Keith Rothman <537074+litghost@users.noreply.github.com> | 2021-03-15 10:25:46 -0700 |
---|---|---|
committer | gatecat <gatecat@ds0.me> | 2021-03-15 18:49:12 +0000 |
commit | 351ca3b5eac472b4bd08b11a4aa6fb67e545eda3 (patch) | |
tree | 25817e9ea10d339bf4c127b0a082cc5ac9a51deb /common/placer_heap.cc | |
parent | a8e35062c6a1a21838346dd7536bb2fcc7f820ed (diff) | |
download | nextpnr-351ca3b5eac472b4bd08b11a4aa6fb67e545eda3.tar.gz nextpnr-351ca3b5eac472b4bd08b11a4aa6fb67e545eda3.tar.bz2 nextpnr-351ca3b5eac472b4bd08b11a4aa6fb67e545eda3.zip |
Use NEXTPNR_NAMESPACE macro's now that headers are seperated.
Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
Diffstat (limited to 'common/placer_heap.cc')
-rw-r--r-- | common/placer_heap.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/placer_heap.cc b/common/placer_heap.cc index 3ee8503c..97c9c4e5 100644 --- a/common/placer_heap.cc +++ b/common/placer_heap.cc @@ -151,7 +151,7 @@ class HeAPPlacer { auto startt = std::chrono::high_resolution_clock::now(); - nextpnr::ScopeLock<Context> lock(ctx); + ScopeLock<Context> lock(ctx); place_constraints(); build_fast_bels(); seed_placement(); |