diff options
author | Clifford Wolf <clifford@clifford.at> | 2018-06-12 14:24:59 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2018-06-12 14:24:59 +0200 |
commit | 391d49c13ec675e263115d18481d4b842622b712 (patch) | |
tree | adf6116cbb6688d31fc565cc2f14bb874f535486 /common/design.h | |
parent | 5f813410aabdae3de84e11861248dcd0699b41c2 (diff) | |
download | nextpnr-391d49c13ec675e263115d18481d4b842622b712.tar.gz nextpnr-391d49c13ec675e263115d18481d4b842622b712.tar.bz2 nextpnr-391d49c13ec675e263115d18481d4b842622b712.zip |
Add nextpnr namespace
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'common/design.h')
-rw-r--r-- | common/design.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/common/design.h b/common/design.h index ae2657f2..e763ed48 100644 --- a/common/design.h +++ b/common/design.h @@ -24,6 +24,8 @@ #error Include "design.h" via "nextpnr.h" only. #endif +NEXTPNR_NAMESPACE_BEGIN + struct CellInfo; struct PortRef @@ -81,4 +83,6 @@ struct Design std::unordered_map<IdString, CellInfo *> cells; }; +NEXTPNR_NAMESPACE_END + #endif |