aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2018-06-30 17:13:22 +0200
committerClifford Wolf <clifford@clifford.at>2018-06-30 17:31:24 +0200
commite6dc9ce77df54b3a4e8d8353c7f28eeabfdcd8da (patch)
treee0be9f136166d9221cfba33b5e19c7866823ccfb /common
parentea5e79f0d6afb599f4ba2d71f174c4a37b7def27 (diff)
downloadnextpnr-e6dc9ce77df54b3a4e8d8353c7f28eeabfdcd8da.tar.gz
nextpnr-e6dc9ce77df54b3a4e8d8353c7f28eeabfdcd8da.tar.bz2
nextpnr-e6dc9ce77df54b3a4e8d8353c7f28eeabfdcd8da.zip
Add implementations for generic arch db API
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'common')
-rw-r--r--common/nextpnr.cc2
-rw-r--r--common/nextpnr.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/common/nextpnr.cc b/common/nextpnr.cc
index 5af83a15..1ca3766a 100644
--- a/common/nextpnr.cc
+++ b/common/nextpnr.cc
@@ -21,7 +21,7 @@
NEXTPNR_NAMESPACE_BEGIN
-std::unordered_set<BaseCtx*> IdString::global_ctx;
+std::unordered_set<BaseCtx *> IdString::global_ctx;
void IdString::set(const BaseCtx *ctx, const std::string &s)
{
diff --git a/common/nextpnr.h b/common/nextpnr.h
index af092475..094d6241 100644
--- a/common/nextpnr.h
+++ b/common/nextpnr.h
@@ -74,7 +74,7 @@ struct IdString
// --- deprecated old API ---
- static std::unordered_set<BaseCtx*> global_ctx;
+ static std::unordered_set<BaseCtx *> global_ctx;
const std::string &global_str() const __attribute__((deprecated))
{