diff options
author | gatecat <gatecat@ds0.me> | 2021-03-15 21:08:28 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-15 21:08:28 +0000 |
commit | bf5f0fc58f2c055b6f45a6300ce3895aa79cd27c (patch) | |
tree | 25817e9ea10d339bf4c127b0a082cc5ac9a51deb /common/router2.cc | |
parent | a8e35062c6a1a21838346dd7536bb2fcc7f820ed (diff) | |
parent | 351ca3b5eac472b4bd08b11a4aa6fb67e545eda3 (diff) | |
download | nextpnr-bf5f0fc58f2c055b6f45a6300ce3895aa79cd27c.tar.gz nextpnr-bf5f0fc58f2c055b6f45a6300ce3895aa79cd27c.tar.bz2 nextpnr-bf5f0fc58f2c055b6f45a6300ce3895aa79cd27c.zip |
Merge pull request #625 from litghost/use_namespace_macro
Use NEXTPNR_NAMESPACE macro's now that headers are seperated.
Diffstat (limited to 'common/router2.cc')
-rw-r--r-- | common/router2.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/router2.cc b/common/router2.cc index ccce5205..27f8ec0d 100644 --- a/common/router2.cc +++ b/common/router2.cc @@ -1218,7 +1218,7 @@ struct Router2 ThreadContext st; int iter = 1; - nextpnr::ScopeLock<Context> lock(ctx); + ScopeLock<Context> lock(ctx); for (size_t i = 0; i < nets_by_udata.size(); i++) route_queue.push_back(i); |