aboutsummaryrefslogtreecommitdiffstats
path: root/common/kernel/basectx.h
diff options
context:
space:
mode:
authormyrtle <gatecat@ds0.me>2022-08-10 11:25:34 +0100
committerGitHub <noreply@github.com>2022-08-10 11:25:34 +0100
commit66722096edaff35f1620ebfc9acaab13ae149377 (patch)
tree8b189e44b65afabfaddb3402ab8aac544df9ba83 /common/kernel/basectx.h
parent06ce27ed38279cfa3455e248ea2b2c773cdf6324 (diff)
parent77c82b0fbf15892b0c8222bac89564f3f024493e (diff)
downloadnextpnr-66722096edaff35f1620ebfc9acaab13ae149377.tar.gz
nextpnr-66722096edaff35f1620ebfc9acaab13ae149377.tar.bz2
nextpnr-66722096edaff35f1620ebfc9acaab13ae149377.zip
Merge pull request #1010 from YosysHQ/gatecat/idf
refactor: id(stringf(...)) to new idf(...) helper
Diffstat (limited to 'common/kernel/basectx.h')
-rw-r--r--common/kernel/basectx.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/common/kernel/basectx.h b/common/kernel/basectx.h
index 5775e47f..c8791a2b 100644
--- a/common/kernel/basectx.h
+++ b/common/kernel/basectx.h
@@ -162,6 +162,8 @@ struct BaseCtx
IdString id(const char *s) const { return IdString(this, s); }
+ IdString idf(const char *fmt, ...) const; // create IdString using printf formatting
+
Context *getCtx() { return as_ctx; }
const Context *getCtx() const { return as_ctx; }